-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
styles.css
234 lines (194 loc) · 5.48 KB
/
styles.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*----------------------------------------------------------------
CMENU TOOLBAR
----------------------------------------------------------------*/
#cMenuModalBar {
width: auto;
height: auto;
padding: 3px;
display: grid;
user-select: none;
border-radius: 6px;
position: absolute;
transition: 200ms ease;
min-width: fit-content;
justify-content: space-around;
z-index: var(--layer-status-bar);
box-shadow: 0px 3px 32px rgb(31 38 135 / 15%);
border: 1px solid var(--background-modifier-border);
}
#cMenuModalBar .cMenuCommandItem {
margin: 2px;
border: none;
display: flex;
cursor: pointer;
padding: 5px 6px;
box-shadow: none;
margin-left: 3px;
margin-right: 3px;
position: relative;
border-radius: 3px;
font-size: initial !important;
background-color: var(--background-primary-alt);
}
#cMenuModalBar button.cMenuCommandItem:hover {
background-color: var(--background-secondary);
}
#cMenuModalBar button.cMenuCommandItem svg {
width: 1.3em;
height: 1.3em;
}
/*----------------------------------------------------------------
CMENU SETTINGS BUTTONS
----------------------------------------------------------------*/
.modal.mod-settings
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonAdd,
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonAdd {
background-color: var(--interactive-accent);
}
.modal.mod-settings
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonDelete,
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonDelete {
background-color: #989cab;
}
.modal.mod-settings
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonRefresh,
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonRefresh {
background-color: var(--text-accent);
}
button.cMenuSettingsButton {
padding: 4px 14px;
border-radius: 6px;
}
.cMenuSettingsButton svg {
width: 1.3em;
height: 1.3em;
display: flex;
}
/*----------------------------------------------------------------
CMENU SETTING ITEMS
----------------------------------------------------------------*/
.setting-item.cMenuCommandItem:first-child {
padding-top: 18px;
}
.cMenuCommandItem {
cursor: grab;
padding: 18px 0 18px 0;
}
.sortable-fallback {
cursor: grabbing;
box-shadow: 0px 3px 32px rgb(31 38 135 / 15%);
}
.sortable-grab {
cursor: grabbing !important;
}
.sortable-ghost {
opacity: 0.4;
cursor: grabbing;
}
.sortable-chosen {
cursor: grabbing;
padding: 18px 0 18px 18px;
background-color: var(--background-primary);
}
.sortable-drag {
cursor: grabbing;
box-shadow: 0px 3px 32px rgb(31 38 135 / 15%);
}
.cMenuSettingsTabsContainer {
border-top: 1px solid var(--background-modifier-border);
border-bottom: 1px solid var(--background-modifier-border);
}
/*----------------------------------------------------------------
CMENU CLASS CHANGES
----------------------------------------------------------------*/
.cMenuGlassAesthetic {
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.cMenuDefaultAesthetic {
background-color: var(--background-primary);
}
/*----------------------------------------------------------------
CMENU ICONS
----------------------------------------------------------------*/
.cMenuIconPick {
line-height: normal;
vertical-align: middle;
margin-right: 8px;
}
.cMenuIconPick svg {
width: 17px;
height: 17px;
}
/*----------------------------------------------------------------
CMENU STATUS BAR MENU
----------------------------------------------------------------*/
.cMenu-statusbar-menu {
width: 200px;
}
.cMenu-statusbar-menu .menu-item-icon {
display: none;
}
.cMenu-statusbar-menu .menu-item {
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row;
}
.cMenu-statusbar-menu .menu-item.settings-item {
font-size: 12px;
text-align: center;
line-height: 1;
border-radius: 5px;
height: auto;
padding: 8px 5px 0px 5px;
margin: 0 auto;
width: fit-content;
color: var(--text-faint);
}
.cMenu-statusbar-menu .menu-item.settings-item .menu-item-title {
text-align: center;
}
.cMenu-statusbar-menu .menu-item:hover,
.cMenu-statusbar-menu .menu-item .selected:hover,
.cMenu-statusbar-menu .menu-item.selected:not(.is-disabled):not(.is-label) {
background-color: transparent;
}
.cMenu-statusbar-menu .menu-item-title {
margin-right: 10px;
}
.cMenu-statusbar-menu .slider {
width: 100%;
}
.cMenu-statusbar-menu .menu-item.buttonitem {
padding-top: 10px;
padding-bottom: 4px;
height: fit-content;
}
.cMenu-statusbar-menu .menu-item.buttonitem button.cMenuSettingsButton {
margin: 0;
}
/*----------------------------------------------------------------
CMENU STATUS BAR BUTTONS
----------------------------------------------------------------*/
.cMenu-statusbar-button {
cursor: pointer;
display: flex;
align-items: center;
line-height: 1;
}
.cMenu-statusbar-button svg {
display: flex;
width: 1.3em;
height: 1.3em;
}
/*----------------------------------------------------------------
CMENU SUPPORT
----------------------------------------------------------------*/
.cDonationSection {
width: 60%;
height: 50vh;
margin: 0 auto;
text-align: center;
color: var(--text-normal);
}