-
Notifications
You must be signed in to change notification settings - Fork 1
/
contextMenu.css
69 lines (60 loc) · 1.01 KB
/
contextMenu.css
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
#contextMenu{
font-family: Arial, Helvetica, sans-serif;
font-size: small;
position: absolute;
top: 0px;
left: 0px;
padding: 16px;
background: linear-gradient(180deg, #fff 10.5%, #f4f6f7 100%);
border-radius: 3px;
display: flex;
flex-direction: column;
cursor: move;
border:1px solid #c5cdd1;
box-shadow: 0 1px 0 #eef1f2;
transition: opacity 300ms ease-in-out;
opacity: 0.65;
visibility: hidden;
width: 175px;
}
#contextMenu:hover{
opacity: 0.95;
}
#modelColor{
width:99%;
margin:auto;
}
#numberGroup{
display: flex;
flex-direction: row;
}
.numberInput {
width:28%;
margin:2px;
}
.inputLabel {
margin-bottom: 4px;
margin-top: 6px;
color: #546e7a;
user-select: none;
}
input {
cursor: pointer;
user-select: none;
}
hr {
width: 100%;
box-shadow: 0 1px 0 #eef1f2;
color: #546e7a;
border-radius: 2px;
margin-top: 6px;
margin-bottom: 2px;
opacity: 0.5;
user-select: none;
}
i {
width: 24px;
align-self: flex-end;
cursor: pointer;
user-select: none;
}