forked from cyruzzo/AboveVTT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiceContextMenu.css
More file actions
165 lines (154 loc) · 3.81 KB
/
DiceContextMenu.css
File metadata and controls
165 lines (154 loc) · 3.81 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
.dcm-backdrop {
z-index: 60000 !important;
position: fixed;
inset: 0px;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.dcm-container {
opacity: 1;
transform: none;
transition: opacity 306ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 306ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
transform-origin: 0px 239.609375px;
min-width: 215px;
border-radius: 12px;
background-color: #182026;
color: rgba(0, 0, 0, 0.87);
box-shadow: rgb(0 0 0 / 20%) 0px 5px 5px -3px, rgb(0 0 0 / 14%) 0px 8px 10px 1px, rgb(0 0 0 / 12%) 0px 3px 14px 2px;
position: absolute;
overflow: hidden auto;
min-height: 16px;
max-width: calc(100% - 32px);
max-height: calc(100% - 32px);
outline: 0px;
}
.dcm-section-list {
padding: 0;
list-style: none;
margin: 0px;
position: relative;
color: inherit;
}
.dcm-section {
padding: 0;
}
.dcm-section-header {
line-height: 32px;
color: #A7B6C2;
background-color: rgb(255, 255, 255);
font-size: 11px;
text-transform: uppercase;
box-sizing: border-box;
list-style: none;
color: rgba(0, 0, 0, 0.6);
font-family: Roboto, Helvetica, Arial, sans-serif;
font-weight: 500;
padding-left: 16px;
padding-right: 16px;
position: sticky;
top: 0px;
z-index: 1;
}
.dcm-row {
-webkit-tap-highlight-color: transparent;
background-color: transparent;
outline: 0px;
border: 0px;
margin: 0px;
border-radius: 0px;
cursor: pointer;
user-select: none;
vertical-align: middle;
appearance: none;
color: inherit;
display: flex;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
position: relative;
text-decoration: none;
width: 100%;
box-sizing: border-box;
text-align: left;
padding: 8px 16px;
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.dcm-row-icon {
min-width: 40px;
color: rgba(0, 0, 0, 0.54);
flex-shrink: 0;
display: inline-flex;
text-align: left;
cursor: pointer;
user-select: none;
}
.dcm-svg {
user-select: none;
width: 1em;
height: 1em;
display: inline-block;
fill: currentcolor;
flex-shrink: 0;
transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
font-size: 1.5rem;
}
.dcm-row-title {
flex: 1 1 auto;
min-width: 0px;
margin-top: 4px;
margin-bottom: 4px;
cursor: pointer;
user-select: none;
}
.dcm-row-title span {
font-size: 14px;
margin: 0px;
font-family: Roboto, Helvetica, Arial, sans-serif;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.00938em;
display: block;
color: #fff;
}
.dcm-hr {
background-color: #444D5B;
margin: 0px;
flex-shrink: 0;
border-width: 0px 0px thin;
border-style: solid;
border-color: rgba(0, 0, 0, 0.12);
}
.dcm-roll-button {
padding: 12px;
color: #1B9AF0;
font-weight: 700;
display: inline-flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
position: relative;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
background-color: transparent;
outline: 0px;
border: 0px;
margin: 0px;
cursor: pointer;
user-select: none;
vertical-align: middle;
appearance: none;
text-decoration: none;
font-family: Roboto, Helvetica, Arial, sans-serif;
font-size: 0.875rem;
line-height: 1.75;
letter-spacing: 0.02857em;
text-transform: uppercase;
min-width: 64px;
border-radius: 4px;
transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
width: 100%;
}