aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/FontIconBox.scss
blob: 13af511a6eb1e6e60d32a14a8fa88de117c7794f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.fontIconBox-outerDiv {
    width: 100%;
    height: 100%;
    pointer-events: all;
    touch-action: none;
    border-radius: inherit;
    background: black;
    border-radius: 100%;
    transform-origin: top left;

    .fontIconBox-label {
        background: gray;
        color: white;
        border-radius: 8px;
        width: 100%;
        position: absolute;
        text-align: center;
        font-size: 8px;
        //margin-top:4px;
        letter-spacing: normal;
        left: 0;
        overflow: hidden;
    }

    svg {
        width: 95% !important;
        height: 95%;
    }
}

.menuButton {
    //padding: 7px;
    padding-left: 5px;
    width: 100%;
    width: 60px;
    height: 70px;
    padding-top: 3px;
    padding-bottom: 3px;

    .menuButton-wrap {
        width: 45px;
        /* padding: 5px; */
        touch-action: none;
        background: black;
        transform-origin: top left;
        /* margin-bottom: 5px; */
        margin-top: 5px;
        margin-right: 25px;
        border-radius: 8px;

        &:hover {
            background: rgb(61, 61, 61);
            cursor: pointer;
        }
    }

    .menuButton-label {
        color: white;
        margin-right: 4px;
        border-radius: 8px;
        width: 42px;
        position: relative;
        text-align: center;
        font-size: 7px;
        margin-top: 1px;
        letter-spacing: normal;
        padding: 3px;
        background-color: inherit;
    }

    .menuButton-icon {
        width: auto;
        height: 32px;
        padding: 5px;
    }

    svg {
        width: 95% !important;
        height: 95%;
    }
}