blob: c810aef3e2620d026b4d86c28a2397429cb9a245 (
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
|
.contextMenu-cont {
position: absolute;
display: flex;
z-index: 1000;
box-shadow: #AAAAAA .2vw .2vw .4vw;
flex-direction: column; //E
// border-radius: 20px;
}
.contextMenu-item {
width: auto; //10vw
height: auto; //4vh
background: #F0F8FF; // background: #DDDDDD;
display: flex;
justify-content: left; //center
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 .1s;
border-width: .11px;
border-color: rgb(187, 186, 186);
border-bottom-style: solid;
border-top-style: none;
padding: 10px;
white-space: nowrap;
}
.contextMenu-item:hover {
transition: all .1s;
background: #B0E0E6; // background: #AAAAAA
}
.contextMenu-description {
font-size: 1.5vw;
text-align: left;
width: 8vw;
}
#mySearch {
font-size: 1.5vw;
border-left-style: none;
border-right-style: none;
}
|