blob: 9cd1ee23a51a5e4d05476db5b917dc269f184326 (
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
|
@import '../global/globalCssVariables.module.scss';
.radialMenu-cont {
position: absolute;
z-index: $radialMenu-zindex;
flex-direction: column;
}
.radialMenu-subMenu-cont {
position: absolute;
display: flex;
z-index: 1000;
flex-direction: column;
border-radius: 15px;
padding-top: 10px;
padding-bottom: 10px;
}
.radialMenu-item {
// width: 11vw; //10vw
display: flex; //comment out to allow search icon to be inline with search text
align-items: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: all 0.1s;
border-style: none;
white-space: nowrap;
font-size: 13px;
letter-spacing: 2px;
text-transform: uppercase;
}
s .radialMenu-itemSelected {
border-style: none;
}
.radialMenu-group {
// width: 11vw; //10vw
display: flex; //comment out to allow search icon to be inline with search text
justify-content: left;
align-items: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: all 0.1s;
border-width: 0.11px;
border-style: none;
border-color: $medium-gray; // rgb(187, 186, 186);
// padding: 10px 0px 10px 0px;
white-space: nowrap;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
padding-left: 5px;
}
.radialMenu-description {
margin-left: 5px;
text-align: left;
display: inline; //need this?
}
|