midinous 1.0.0.beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/COPYING.L +674 -0
- data/README.md +31 -0
- data/lib/doc/Hotkeys.txt +30 -0
- data/lib/doc/Notes and Scales.txt +64 -0
- data/lib/midinous/canvas.rb +388 -0
- data/lib/midinous/constants.rb +108 -0
- data/lib/midinous/init.rb +166 -0
- data/lib/midinous/key_bindings.rb +81 -0
- data/lib/midinous/logic.rb +165 -0
- data/lib/midinous/points.rb +1060 -0
- data/lib/midinous/proc_midi.rb +100 -0
- data/lib/midinous/style/midinous.glade +928 -0
- data/lib/midinous/style/midinous_themes.style +4022 -0
- data/lib/midinous/style/ui.rb +686 -0
- data/lib/midinous.rb +21 -0
- data/lib/saves/sample.nous +9 -0
- metadata +102 -0
@@ -0,0 +1,4022 @@
|
|
1
|
+
/* GTK NAMED COLORS
|
2
|
+
----------------
|
3
|
+
use responsibly! */
|
4
|
+
/*
|
5
|
+
widget text/foreground color */
|
6
|
+
@define-color theme_fg_color #d3d8e5;
|
7
|
+
/*
|
8
|
+
text color for entries, views and content in general */
|
9
|
+
@define-color theme_text_color #d3d8e5;
|
10
|
+
/*@define-color theme_text_color #ffffff;*/
|
11
|
+
/*
|
12
|
+
widget base background color */
|
13
|
+
@define-color theme_bg_color #282c34;
|
14
|
+
/*
|
15
|
+
text widgets and the like base background color */
|
16
|
+
@define-color theme_base_color #3d424c;
|
17
|
+
/*
|
18
|
+
base background color of selections */
|
19
|
+
@define-color theme_selected_bg_color #5191e0;
|
20
|
+
/*
|
21
|
+
text/foreground color of selections */
|
22
|
+
@define-color theme_selected_fg_color #eff1f5;
|
23
|
+
/*
|
24
|
+
base background color of insensitive widgets */
|
25
|
+
@define-color insensitive_bg_color #24282f;
|
26
|
+
/*
|
27
|
+
text foreground color of insensitive widgets */
|
28
|
+
@define-color insensitive_fg_color rgba(186, 194, 214, 0.35);
|
29
|
+
/*
|
30
|
+
insensitive text widgets and the like base background color */
|
31
|
+
@define-color insensitive_base_color rgba(186, 194, 214, 0.35);
|
32
|
+
/*
|
33
|
+
widget text/foreground color on backdrop windows */
|
34
|
+
@define-color theme_unfocused_fg_color #d3d8e5;
|
35
|
+
/*
|
36
|
+
text color for entries, views and content in general on backdrop windows */
|
37
|
+
@define-color theme_unfocused_text_color #d3d8e5;
|
38
|
+
/*
|
39
|
+
widget base background color on backdrop windows */
|
40
|
+
@define-color theme_unfocused_bg_color #282c34;
|
41
|
+
/*
|
42
|
+
text widgets and the like base background color on backdrop windows */
|
43
|
+
@define-color theme_unfocused_base_color #3d424c;
|
44
|
+
/*
|
45
|
+
base background color of selections on backdrop windows */
|
46
|
+
@define-color theme_unfocused_selected_bg_color rgba(81, 145, 224, 0.5);
|
47
|
+
/*
|
48
|
+
text/foreground color of selections on backdrop windows */
|
49
|
+
@define-color theme_unfocused_selected_fg_color #eff1f5;
|
50
|
+
/*
|
51
|
+
widgets main borders color */
|
52
|
+
@define-color borders #535760;
|
53
|
+
/*
|
54
|
+
widgets main borders color on backdrop windows */
|
55
|
+
@define-color unfocused_borders #535760;
|
56
|
+
/*
|
57
|
+
widgets main borders color insensitive */
|
58
|
+
@define-color insensitive_borders rgba(75, 79, 87, 0.35);
|
59
|
+
/*
|
60
|
+
these are pretty self explicative */
|
61
|
+
@define-color warning_color #f67400;
|
62
|
+
@define-color error_color #da4453;
|
63
|
+
@define-color success_color #27ae60;
|
64
|
+
@define-color content_view_bg #3d424c;
|
65
|
+
* {
|
66
|
+
padding: 0;
|
67
|
+
-GtkToolButton-icon-spacing: 4;
|
68
|
+
-GtkTextView-error-underline-color: #da4453;
|
69
|
+
-GtkScrolledWindow-scrollbar-spacing: 0;
|
70
|
+
-GtkScrolled-window-overlay-scrolling: FALSE;
|
71
|
+
-GtkToolItemGroup-expander-size: 11;
|
72
|
+
-GtkTreeView-expander-size: 11;
|
73
|
+
-GtkTreeView-horizontal-separator: 4;
|
74
|
+
-GtkWidget-text-handle-width: 20;
|
75
|
+
-GtkWidget-text-handle-height: 20;
|
76
|
+
-GtkDialog-button-spacing: 4;
|
77
|
+
-GtkDialog-action-area-border: 0;
|
78
|
+
outline-width: 0px; }
|
79
|
+
|
80
|
+
*:focus{
|
81
|
+
border: 4px;
|
82
|
+
border-color: #ffffff;}
|
83
|
+
|
84
|
+
/***************
|
85
|
+
* Base States *
|
86
|
+
***************/
|
87
|
+
.background {
|
88
|
+
color: #d3d8e5;
|
89
|
+
background-color: #282c34; }
|
90
|
+
.background:backdrop {
|
91
|
+
text-shadow: none;
|
92
|
+
-gtk-icon-shadow: none;
|
93
|
+
color: #d3d8e5;
|
94
|
+
background-color: #282c34; }
|
95
|
+
|
96
|
+
/*
|
97
|
+
These wildcard seems unavoidable, need to investigate.
|
98
|
+
Wildcards are bad and troublesome, use them with care,
|
99
|
+
or better, just don't.
|
100
|
+
Everytime a wildcard is used a kitten dies, painfully.
|
101
|
+
*/
|
102
|
+
*:disabled {
|
103
|
+
-gtk-icon-effect: dim; }
|
104
|
+
|
105
|
+
.gtkstyle-fallback {
|
106
|
+
background-color: #282c34;
|
107
|
+
color: #d3d8e5; }
|
108
|
+
.gtkstyle-fallback:hover {
|
109
|
+
background-color: #3e4451;
|
110
|
+
color: #d3d8e5; }
|
111
|
+
.gtkstyle-fallback:active {
|
112
|
+
background-color: #121417;
|
113
|
+
color: #d3d8e5; }
|
114
|
+
.gtkstyle-fallback:disabled {
|
115
|
+
background-color: #24282f;
|
116
|
+
color: rgba(186, 194, 214, 0.35); }
|
117
|
+
.gtkstyle-fallback:selected {
|
118
|
+
background-color: #5191e0;
|
119
|
+
color: #eff1f5; }
|
120
|
+
|
121
|
+
.view text,
|
122
|
+
textview text,
|
123
|
+
.view {
|
124
|
+
color: #d3d8e5;
|
125
|
+
background-color: #3d424c; }
|
126
|
+
.view text:backdrop,
|
127
|
+
textview text:backdrop,
|
128
|
+
.view:backdrop {
|
129
|
+
color: #d3d8e5;
|
130
|
+
background-color: #3d424c; }
|
131
|
+
.view text:disabled,
|
132
|
+
textview text:disabled,
|
133
|
+
.view:disabled {
|
134
|
+
color: rgba(186, 194, 214, 0.35); }
|
135
|
+
.view text:selected:focus,
|
136
|
+
textview text:selected:focus, .view text:selected,
|
137
|
+
textview text:selected,
|
138
|
+
.view:selected:focus,
|
139
|
+
.view:selected {
|
140
|
+
border-radius: 3px; }
|
141
|
+
|
142
|
+
textview border {
|
143
|
+
background-color: #3d424c;
|
144
|
+
background-image: image(#535760);
|
145
|
+
background-repeat: no-repeat; }
|
146
|
+
textview border:backdrop {
|
147
|
+
background-color: #3d424c; }
|
148
|
+
textview border.bottom {
|
149
|
+
background-size: 100% 1px;
|
150
|
+
background-position: top; }
|
151
|
+
textview border.top {
|
152
|
+
background-size: 100% 1px;
|
153
|
+
background-position: bottom; }
|
154
|
+
textview border.left {
|
155
|
+
background-size: 1px 100%;
|
156
|
+
background-position: right; }
|
157
|
+
textview border.right {
|
158
|
+
background-size: 1px 100%;
|
159
|
+
background-position: left; }
|
160
|
+
|
161
|
+
.rubberband,
|
162
|
+
rubberband,
|
163
|
+
flowbox rubberband,
|
164
|
+
treeview.view rubberband {
|
165
|
+
border: 1px solid #5191e0;
|
166
|
+
background-color: rgba(81, 145, 224, 0.2); }
|
167
|
+
.rubberband:backdrop,
|
168
|
+
rubberband:backdrop,
|
169
|
+
treeview.view rubberband:backdrop {
|
170
|
+
border-color: #5191e0;
|
171
|
+
background-color: rgba(81, 145, 224, 0.2); }
|
172
|
+
|
173
|
+
flowbox flowboxchild {
|
174
|
+
padding: 3px;
|
175
|
+
border-radius: 3px; }
|
176
|
+
flowbox flowboxchild:selected {
|
177
|
+
outline-offset: 0px; }
|
178
|
+
|
179
|
+
label.separator {
|
180
|
+
color: #d3d8e5; }
|
181
|
+
label.separator:backdrop {
|
182
|
+
color: #d3d8e5; }
|
183
|
+
|
184
|
+
label selection {
|
185
|
+
background-color: #5191e0;
|
186
|
+
color: #eff1f5; }
|
187
|
+
|
188
|
+
label:disabled {
|
189
|
+
color: rgba(186, 194, 214, 0.35); }
|
190
|
+
label:disabled:backdrop {
|
191
|
+
color: rgba(186, 194, 214, 0.35); }
|
192
|
+
|
193
|
+
label:backdrop {
|
194
|
+
color: #d3d8e5; }
|
195
|
+
|
196
|
+
.dim-label, label.separator,
|
197
|
+
headerbar .subtitle {
|
198
|
+
opacity: 0.5;
|
199
|
+
text-shadow: none; }
|
200
|
+
|
201
|
+
assistant .sidebar {
|
202
|
+
background-color: #d3d8e5;
|
203
|
+
border-top: 1px solid #535760; }
|
204
|
+
assistant .sidebar:backdrop {
|
205
|
+
background-color: #d3d8e5;
|
206
|
+
border-color: #535760; }
|
207
|
+
|
208
|
+
assistant.csd .sidebar {
|
209
|
+
border-top-style: none; }
|
210
|
+
|
211
|
+
assistant .sidebar label {
|
212
|
+
padding: 6px 12px; }
|
213
|
+
|
214
|
+
assistant .sidebar label.highlight {
|
215
|
+
background-color: #5b606b; }
|
216
|
+
|
217
|
+
.app-notification,
|
218
|
+
.app-notification.frame, .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier, .csd popover.background.osd, popover.background.osd,
|
219
|
+
.osd {
|
220
|
+
color: #d3d8e5;
|
221
|
+
border: 1px solid #535760;
|
222
|
+
background-color: rgba(40, 44, 52, 0.8);
|
223
|
+
background-clip: padding-box;
|
224
|
+
box-shadow: none;
|
225
|
+
text-shadow: none;
|
226
|
+
-gtk-icon-shadow: none; }
|
227
|
+
.app-notification:backdrop, popover.background.touch-selection:backdrop, popover.background.magnifier:backdrop, popover.background.osd:backdrop,
|
228
|
+
.osd:backdrop {
|
229
|
+
color: #d3d8e5;
|
230
|
+
background-color: rgba(40, 44, 52, 0.8);
|
231
|
+
-gtk-icon-shadow: none; }
|
232
|
+
|
233
|
+
.view text:selected,
|
234
|
+
textview text:selected,
|
235
|
+
.view:selected:focus,
|
236
|
+
.view:selected, .view text selection:focus, .view text selection,
|
237
|
+
textview text selection:focus,
|
238
|
+
textview text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection,
|
239
|
+
entry selection:focus,
|
240
|
+
entry selection, row:selected, .sidebar:selected {
|
241
|
+
background-color: #5191e0;
|
242
|
+
color: #eff1f5; }
|
243
|
+
|
244
|
+
textview text:hover:selected:focus, .view text:hover:selected,
|
245
|
+
textview text:hover:selected,
|
246
|
+
.view:hover:selected, .view text selection:hover,
|
247
|
+
textview text selection:hover, flowbox flowboxchild:hover:selected, spinbutton:not(.vertical) selection:hover:focus, spinbutton:not(.vertical) selection:hover,
|
248
|
+
entry selection:hover, row:hover:selected, .sidebar:hover:selected {
|
249
|
+
background-color: #5191e0;
|
250
|
+
color: #d3d8e5; }
|
251
|
+
|
252
|
+
textview text:backdrop:selected:focus, .view text:backdrop:selected,
|
253
|
+
textview text:backdrop:selected,
|
254
|
+
.view:backdrop:selected, .view text selection:backdrop,
|
255
|
+
textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selection, spinbutton:not(.vertical) selection:backdrop:focus, spinbutton:not(.vertical) selection:backdrop,
|
256
|
+
entry selection:backdrop, row:backdrop:selected, .sidebar:backdrop:selected {
|
257
|
+
background-color: rgba(81, 145, 224, 0.5);
|
258
|
+
color: #3d424c; }
|
259
|
+
|
260
|
+
.view text:selected,
|
261
|
+
textview text:selected,
|
262
|
+
.view:selected:focus,
|
263
|
+
.view:selected, .view text selection:focus, .view text selection,
|
264
|
+
textview text selection:focus,
|
265
|
+
textview text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection,
|
266
|
+
entry selection:focus,
|
267
|
+
entry selection, row:selected, .sidebar:selected {
|
268
|
+
background-color: #5191e0;
|
269
|
+
border-radius: 0px; }
|
270
|
+
.view text:selected,
|
271
|
+
textview text:selected,
|
272
|
+
.view:selected:focus,
|
273
|
+
.view:selected, .view text selection:focus, .view text selection,
|
274
|
+
textview text selection:focus,
|
275
|
+
textview text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection:focus, spinbutton:not(.vertical) selection,
|
276
|
+
entry selection:focus,
|
277
|
+
entry selection, row:selected, .sidebar:selected {
|
278
|
+
color: #eff1f5; }
|
279
|
+
|
280
|
+
textview text:disabled:selected:focus, .view text:disabled:selected,
|
281
|
+
textview text:disabled:selected,
|
282
|
+
.view:disabled:selected, .view text selection:disabled,
|
283
|
+
textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled:focus, spinbutton:not(.vertical) selection:disabled,
|
284
|
+
entry selection:disabled, row:disabled:selected, .sidebar:disabled:selected {
|
285
|
+
color: rgba(212, 217, 228, 0.35); }
|
286
|
+
|
287
|
+
textview text:backdrop:selected:focus, .view text:backdrop:selected,
|
288
|
+
textview text:backdrop:selected,
|
289
|
+
.view:backdrop:selected, .view text selection:backdrop,
|
290
|
+
textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label:backdrop selction, spinbutton:not(.vertical) selection:backdrop:focus, spinbutton:not(.vertical) selection:backdrop,
|
291
|
+
entry selection:backdrop, row:backdrop:selected, .sidebar:backdrop:selected {
|
292
|
+
color: #eff1f5; }
|
293
|
+
.view text:backdrop:disabled:selected,
|
294
|
+
textview text:backdrop:disabled:selected,
|
295
|
+
.view:backdrop:disabled:selected, .view text selection:backdrop:disabled,
|
296
|
+
textview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, label:disabled selection:backdrop, label:backdrop selction:disabled, spinbutton:not(.vertical) selection:backdrop:disabled,
|
297
|
+
entry selection:backdrop:disabled, row:backdrop:disabled:selected, .sidebar:backdrop:disabled:selected {
|
298
|
+
color: rgba(212, 217, 228, 0.35); }
|
299
|
+
|
300
|
+
/***********
|
301
|
+
* Buttons *
|
302
|
+
***********/
|
303
|
+
@keyframes needs_attention {
|
304
|
+
from {
|
305
|
+
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#5191e0), to(transparent)); }
|
306
|
+
to {
|
307
|
+
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5191e0), to(transparent)); } }
|
308
|
+
|
309
|
+
notebook > header > tabs > arrow, .csd popover.background.touch-selection button, .csd popover.background.magnifier button, popover.background.touch-selection button, popover.background.magnifier button,
|
310
|
+
button, notebook > header > tabs > arrow.osd,
|
311
|
+
button.osd {
|
312
|
+
border: 1px solid;
|
313
|
+
border-radius: 3px;
|
314
|
+
padding: 4px 6px;
|
315
|
+
background-clip: border-box;
|
316
|
+
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
317
|
+
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
|
318
|
+
text-shadow: none;
|
319
|
+
-gtk-icon-shadow: none;
|
320
|
+
color: #d3d8e5;
|
321
|
+
border-color: #535760;
|
322
|
+
background-image: linear-gradient(to bottom, #414855, #3e4552); }
|
323
|
+
notebook > header > tabs > arrow, button.sidebar-button, popover.background.touch-selection button.flat, popover.background.magnifier button.flat,
|
324
|
+
button.flat, notebook > header > tabs > arrow.osd, button.osd.sidebar-button {
|
325
|
+
border-color: rgba(255, 255, 255, 0);
|
326
|
+
background-color: transparent;
|
327
|
+
background-image: none;
|
328
|
+
box-shadow: none;
|
329
|
+
color: #d3d8e5;
|
330
|
+
text-shadow: none;
|
331
|
+
-gtk-icon-shadow: none;
|
332
|
+
transition: none; }
|
333
|
+
notebook > header > tabs > arrow:hover, button.sidebar-button:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover,
|
334
|
+
button.flat:hover, notebook > header > tabs > arrow.osd:hover {
|
335
|
+
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
336
|
+
transition-duration: 500ms; }
|
337
|
+
notebook > header > tabs > arrow:hover:active, button.sidebar-button:hover:active,
|
338
|
+
button.flat:hover:active {
|
339
|
+
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
|
340
|
+
notebook > header > tabs > arrow:checked, button.sidebar-button:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked,
|
341
|
+
button.flat:checked, notebook > header > tabs > arrow.osd:checked {
|
342
|
+
background-color: #535760; }
|
343
|
+
notebook > header > tabs > arrow:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover,
|
344
|
+
button:hover, notebook > header > tabs > arrow.osd:hover {
|
345
|
+
color: #d3d8e5;
|
346
|
+
border-color: #5191e0;
|
347
|
+
-gtk-icon-effect: none; }
|
348
|
+
notebook > header > tabs > arrow:active, popover.background.touch-selection button:active, popover.background.magnifier button:active,
|
349
|
+
button:active, notebook > header > tabs > arrow.osd:active, notebook > header > tabs > arrow:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked,
|
350
|
+
button:checked, notebook > header > tabs > arrow.osd:checked {
|
351
|
+
color: #eff1f5;
|
352
|
+
border-color: #5191e0;
|
353
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc);
|
354
|
+
transition-duration: 50ms; }
|
355
|
+
notebook > header > tabs > arrow:active:hover, popover.background.touch-selection button:active:hover, popover.background.magnifier button:active:hover,
|
356
|
+
button:active:hover, notebook > header > tabs > arrow:checked:hover, popover.background.touch-selection button:checked:hover, popover.background.magnifier button:checked:hover,
|
357
|
+
button:checked:hover {
|
358
|
+
color: #d3d8e5;
|
359
|
+
border-color: #5191e0;
|
360
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc); }
|
361
|
+
notebook > header > tabs > arrow:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop,
|
362
|
+
button:backdrop, notebook > header > tabs > arrow.osd:backdrop {
|
363
|
+
color: #d3d8e5;
|
364
|
+
border-color: #535760;
|
365
|
+
background-image: linear-gradient(to bottom, #414855, #3e4552);
|
366
|
+
-gtk-icon-effect: none; }
|
367
|
+
notebook > header > tabs > arrow:backdrop:active, popover.background.touch-selection button:backdrop:active, popover.background.magnifier button:backdrop:active,
|
368
|
+
button:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, popover.background.touch-selection button:backdrop:checked, popover.background.magnifier button:backdrop:checked,
|
369
|
+
button:backdrop:checked {
|
370
|
+
color: #eff1f5;
|
371
|
+
border-color: #5191e0;
|
372
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc); }
|
373
|
+
notebook > header > tabs > arrow:backdrop:disabled, popover.background.touch-selection button:backdrop:disabled, popover.background.magnifier button:backdrop:disabled,
|
374
|
+
button:backdrop:disabled {
|
375
|
+
color: rgba(186, 194, 214, 0.35);
|
376
|
+
border-color: rgba(75, 79, 87, 0.35);
|
377
|
+
background-image: linear-gradient(to bottom, rgba(59, 65, 77, 0.35), rgba(56, 63, 74, 0.35)); }
|
378
|
+
notebook > header > tabs > arrow:backdrop:disabled > .label, popover.background.touch-selection button:backdrop:disabled > .label, popover.background.magnifier button:backdrop:disabled > .label, button:backdrop:disabled > .label {
|
379
|
+
color: inherit; }
|
380
|
+
notebook > header > tabs > arrow:backdrop:disabled:active,
|
381
|
+
button:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked,
|
382
|
+
button:backdrop:disabled:checked {
|
383
|
+
color: rgba(212, 217, 228, 0.35);
|
384
|
+
border-color: rgba(57, 130, 220, 0.35);
|
385
|
+
background-image: linear-gradient(to bottom, rgba(65, 135, 221, 0.35), rgba(38, 117, 214, 0.35)); }
|
386
|
+
notebook > header > tabs > arrow:backdrop:disabled:active > .label, popover.background.touch-selection button:backdrop:disabled:active > .label, popover.background.magnifier button:backdrop:disabled:active > .label, button:backdrop:disabled:active > .label, notebook > header > tabs > arrow:backdrop:disabled:checked > .label, popover.background.touch-selection button:backdrop:disabled:checked > .label, popover.background.magnifier button:backdrop:disabled:checked > .label, button:backdrop:disabled:checked > .label {
|
387
|
+
color: inherit; }
|
388
|
+
notebook > header > tabs > arrow:backdrop, button.sidebar-button:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop,
|
389
|
+
button.flat:backdrop, notebook > header > tabs > arrow.osd:backdrop {
|
390
|
+
-gtk-icon-effect: none;
|
391
|
+
border-color: rgba(255, 255, 255, 0);
|
392
|
+
background-color: transparent;
|
393
|
+
background-image: none;
|
394
|
+
box-shadow: none;
|
395
|
+
color: #d3d8e5;
|
396
|
+
text-shadow: none;
|
397
|
+
-gtk-icon-shadow: none;
|
398
|
+
color: #d3d8e5; }
|
399
|
+
notebook > header > tabs > arrow:disabled, button.sidebar-button:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled,
|
400
|
+
button.flat:disabled, notebook > header > tabs > arrow.osd:disabled {
|
401
|
+
border-color: rgba(255, 255, 255, 0);
|
402
|
+
background-color: transparent;
|
403
|
+
background-image: none;
|
404
|
+
box-shadow: none;
|
405
|
+
color: #d3d8e5;
|
406
|
+
text-shadow: none;
|
407
|
+
-gtk-icon-shadow: none;
|
408
|
+
color: rgba(186, 194, 214, 0.35); }
|
409
|
+
notebook > header > tabs > arrow:backdrop:disabled, button.sidebar-button:backdrop:disabled,
|
410
|
+
button.flat:backdrop:disabled {
|
411
|
+
border-color: rgba(255, 255, 255, 0);
|
412
|
+
background-color: transparent;
|
413
|
+
background-image: none;
|
414
|
+
box-shadow: none;
|
415
|
+
color: #d3d8e5;
|
416
|
+
text-shadow: none;
|
417
|
+
-gtk-icon-shadow: none;
|
418
|
+
color: rgba(186, 194, 214, 0.35); }
|
419
|
+
notebook > header > tabs > arrow:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled,
|
420
|
+
button:disabled, notebook > header > tabs > arrow.osd:disabled {
|
421
|
+
color: rgba(186, 194, 214, 0.35);
|
422
|
+
border-color: rgba(75, 79, 87, 0.35);
|
423
|
+
background-image: linear-gradient(to bottom, rgba(59, 65, 77, 0.35), rgba(56, 63, 74, 0.35)); }
|
424
|
+
notebook > header > tabs > arrow:disabled > .label, popover.background.touch-selection button:disabled > .label, popover.background.magnifier button:disabled > .label, button:disabled > .label {
|
425
|
+
color: inherit; }
|
426
|
+
notebook > header > tabs > arrow:disabled:active, popover.background.touch-selection button:disabled:active, popover.background.magnifier button:disabled:active,
|
427
|
+
button:disabled:active, notebook > header > tabs > arrow:disabled:checked, popover.background.touch-selection button:disabled:checked, popover.background.magnifier button:disabled:checked,
|
428
|
+
button:disabled:checked {
|
429
|
+
color: rgba(212, 217, 228, 0.35);
|
430
|
+
border-color: rgba(57, 130, 220, 0.35);
|
431
|
+
background-image: linear-gradient(to bottom, rgba(65, 135, 221, 0.35), rgba(38, 117, 214, 0.35)); }
|
432
|
+
notebook > header > tabs > arrow:disabled:active > .label, popover.background.touch-selection button:disabled:active > .label, popover.background.magnifier button:disabled:active > .label, button:disabled:active > .label, notebook > header > tabs > arrow:disabled:checked > .label, popover.background.touch-selection button:disabled:checked > .label, popover.background.magnifier button:disabled:checked > .label, button:disabled:checked > .label {
|
433
|
+
color: inherit; }
|
434
|
+
notebook > header > tabs > arrow separator, .csd popover.background.touch-selection button separator, .csd popover.background.magnifier button separator, popover.background.touch-selection button separator, popover.background.magnifier button separator, button separator, notebook > header > tabs > arrow.osd separator, button.osd separator {
|
435
|
+
background-color: transparent;
|
436
|
+
background-image: none;
|
437
|
+
color: transparent; }
|
438
|
+
|
439
|
+
notebook > header > tabs > arrow.image-button, popover.background.touch-selection button.image-button, popover.background.magnifier button.image-button,
|
440
|
+
button.image-button {
|
441
|
+
min-width: 16px;
|
442
|
+
padding: 6px; }
|
443
|
+
|
444
|
+
notebook > header > tabs > arrow.text-button, popover.background.touch-selection button.text-button, popover.background.magnifier button.text-button,
|
445
|
+
button.text-button {
|
446
|
+
padding-left: 6px;
|
447
|
+
padding-right: 6px; }
|
448
|
+
|
449
|
+
notebook > header > tabs > arrow.text-button.image-button, popover.background.touch-selection button.text-button.image-button, popover.background.magnifier button.text-button.image-button,
|
450
|
+
button.text-button.image-button {
|
451
|
+
padding-left: 6px;
|
452
|
+
padding-right: 6px; }
|
453
|
+
notebook > header > tabs > arrow.text-button.image-button label, popover.background.touch-selection button.text-button.image-button label, popover.background.magnifier button.text-button.image-button label,
|
454
|
+
button.text-button.image-button label {
|
455
|
+
padding-left: 6px;
|
456
|
+
padding-right: 6px; }
|
457
|
+
|
458
|
+
row:selected popover.background.touch-selection button, popover.background.touch-selection row:selected button, row:selected popover.background.magnifier button, popover.background.magnifier row:selected button, row:selected
|
459
|
+
button {
|
460
|
+
border-color: #5191e0; }
|
461
|
+
row:selected popover.background.touch-selection button.flat:not(:active):not(:checked):not(:hover):not(disabled), popover.background.touch-selection row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled), row:selected popover.background.magnifier button.flat:not(:active):not(:checked):not(:hover):not(disabled), popover.background.magnifier row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled), row:selected
|
462
|
+
button.flat:not(:active):not(:checked):not(:hover):not(disabled) {
|
463
|
+
color: #eff1f5;
|
464
|
+
border-color: transparent; }
|
465
|
+
row:selected popover.background.touch-selection button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop, popover.background.touch-selection row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop, row:selected popover.background.magnifier button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop, popover.background.magnifier row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop, row:selected
|
466
|
+
button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop {
|
467
|
+
color: #eff1f5; }
|
468
|
+
|
469
|
+
popover.background.touch-selection button.suggested-action, popover.background.magnifier button.suggested-action,
|
470
|
+
popover.background.touch-selection button.suggested-action.osd button,
|
471
|
+
popover.background.magnifier button.suggested-action.osd button,
|
472
|
+
button.suggested-action,
|
473
|
+
button.suggested-action.osd popover.background.touch-selection button,
|
474
|
+
popover.background.touch-selection button.suggested-action.osd button,
|
475
|
+
button.suggested-action.osd popover.background.magnifier button,
|
476
|
+
popover.background.magnifier button.suggested-action.osd button,
|
477
|
+
popover.background.touch-selection button.suggested-action.osd button,
|
478
|
+
popover.background.magnifier button.suggested-action.osd button,
|
479
|
+
button.suggested-action.osd
|
480
|
+
button {
|
481
|
+
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
|
482
|
+
text-shadow: none;
|
483
|
+
-gtk-icon-shadow: none;
|
484
|
+
color: #eff1f5;
|
485
|
+
border-color: #5191e0;
|
486
|
+
background-image: linear-gradient(to bottom, #5493e0, #498cdf); }
|
487
|
+
popover.background.touch-selection button.suggested-action.flat, popover.background.magnifier button.suggested-action.flat,
|
488
|
+
popover.background.touch-selection button.suggested-action.osd button.flat,
|
489
|
+
popover.background.magnifier button.suggested-action.osd button.flat,
|
490
|
+
button.suggested-action.flat,
|
491
|
+
button.suggested-action.osd popover.background.touch-selection button.flat,
|
492
|
+
popover.background.touch-selection button.suggested-action.osd button.flat,
|
493
|
+
button.suggested-action.osd popover.background.magnifier button.flat,
|
494
|
+
popover.background.magnifier button.suggested-action.osd button.flat,
|
495
|
+
popover.background.touch-selection button.suggested-action.osd button.flat,
|
496
|
+
popover.background.magnifier button.suggested-action.osd button.flat,
|
497
|
+
button.suggested-action.osd
|
498
|
+
button.flat {
|
499
|
+
border-color: rgba(255, 255, 255, 0);
|
500
|
+
background-color: transparent;
|
501
|
+
background-image: none;
|
502
|
+
box-shadow: none;
|
503
|
+
color: #d3d8e5;
|
504
|
+
text-shadow: none;
|
505
|
+
-gtk-icon-shadow: none;
|
506
|
+
color: #5191e0; }
|
507
|
+
popover.background.touch-selection button.suggested-action:hover, popover.background.magnifier button.suggested-action:hover,
|
508
|
+
popover.background.touch-selection button.suggested-action.osd button:hover,
|
509
|
+
popover.background.magnifier button.suggested-action.osd button:hover,
|
510
|
+
button.suggested-action:hover,
|
511
|
+
button.suggested-action.osd popover.background.touch-selection button:hover,
|
512
|
+
popover.background.touch-selection button.suggested-action.osd button:hover,
|
513
|
+
button.suggested-action.osd popover.background.magnifier button:hover,
|
514
|
+
popover.background.magnifier button.suggested-action.osd button:hover,
|
515
|
+
popover.background.touch-selection button.suggested-action.osd button:hover,
|
516
|
+
popover.background.magnifier button.suggested-action.osd button:hover,
|
517
|
+
button.suggested-action.osd
|
518
|
+
button:hover {
|
519
|
+
color: white;
|
520
|
+
border-color: #5191e0; }
|
521
|
+
popover.background.touch-selection button.suggested-action:active, popover.background.magnifier button.suggested-action:active, popover.background.touch-selection button.suggested-action:checked, popover.background.magnifier button.suggested-action:checked,
|
522
|
+
popover.background.touch-selection button.suggested-action.osd button:active,
|
523
|
+
popover.background.magnifier button.suggested-action.osd button:active,
|
524
|
+
popover.background.touch-selection button.suggested-action.osd button:checked,
|
525
|
+
popover.background.magnifier button.suggested-action.osd button:checked,
|
526
|
+
button.suggested-action:active,
|
527
|
+
button.suggested-action:checked,
|
528
|
+
button.suggested-action.osd popover.background.touch-selection button:active,
|
529
|
+
popover.background.touch-selection button.suggested-action.osd button:active,
|
530
|
+
button.suggested-action.osd popover.background.magnifier button:active,
|
531
|
+
popover.background.magnifier button.suggested-action.osd button:active,
|
532
|
+
button.suggested-action.osd popover.background.touch-selection button:checked,
|
533
|
+
popover.background.touch-selection button.suggested-action.osd button:checked,
|
534
|
+
button.suggested-action.osd popover.background.magnifier button:checked,
|
535
|
+
popover.background.magnifier button.suggested-action.osd button:checked,
|
536
|
+
popover.background.touch-selection button.suggested-action.osd button:active,
|
537
|
+
popover.background.magnifier button.suggested-action.osd button:active,
|
538
|
+
popover.background.touch-selection button.suggested-action.osd button:checked,
|
539
|
+
popover.background.magnifier button.suggested-action.osd button:checked,
|
540
|
+
button.suggested-action.osd
|
541
|
+
button:active,
|
542
|
+
button.suggested-action.osd
|
543
|
+
button:checked {
|
544
|
+
color: white;
|
545
|
+
border-color: #5191e0;
|
546
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc); }
|
547
|
+
popover.background.touch-selection button.suggested-action:backdrop, popover.background.magnifier button.suggested-action:backdrop, popover.background.touch-selection button.suggested-action.flat:backdrop, popover.background.magnifier button.suggested-action.flat:backdrop,
|
548
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop,
|
549
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop,
|
550
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop,
|
551
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop,
|
552
|
+
button.suggested-action:backdrop,
|
553
|
+
button.suggested-action.flat:backdrop,
|
554
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop,
|
555
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop,
|
556
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop,
|
557
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop,
|
558
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop,
|
559
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop,
|
560
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop,
|
561
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop,
|
562
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop,
|
563
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop,
|
564
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop,
|
565
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop,
|
566
|
+
button.suggested-action.osd
|
567
|
+
button:backdrop,
|
568
|
+
button.suggested-action.osd
|
569
|
+
button.flat:backdrop {
|
570
|
+
color: white;
|
571
|
+
border-color: #535760;
|
572
|
+
background-image: linear-gradient(to bottom, #5493e0, #498cdf); }
|
573
|
+
popover.background.touch-selection button.suggested-action:backdrop:active, popover.background.magnifier button.suggested-action:backdrop:active, popover.background.touch-selection button.suggested-action:backdrop:checked, popover.background.magnifier button.suggested-action:backdrop:checked, popover.background.touch-selection button.suggested-action.flat:backdrop:active, popover.background.magnifier button.suggested-action.flat:backdrop:active, popover.background.touch-selection button.suggested-action.flat:backdrop:checked, popover.background.magnifier button.suggested-action.flat:backdrop:checked,
|
574
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:active,
|
575
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:active,
|
576
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:checked,
|
577
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:checked,
|
578
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:active,
|
579
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:active,
|
580
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:checked,
|
581
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:checked,
|
582
|
+
button.suggested-action:backdrop:active,
|
583
|
+
button.suggested-action:backdrop:checked,
|
584
|
+
button.suggested-action.flat:backdrop:active,
|
585
|
+
button.suggested-action.flat:backdrop:checked,
|
586
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:active,
|
587
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:active,
|
588
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:active,
|
589
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:active,
|
590
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:checked,
|
591
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:checked,
|
592
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:checked,
|
593
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:checked,
|
594
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:active,
|
595
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:active,
|
596
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:active,
|
597
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:active,
|
598
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:checked,
|
599
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:checked,
|
600
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:checked,
|
601
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:checked,
|
602
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:active,
|
603
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:active,
|
604
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:checked,
|
605
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:checked,
|
606
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:active,
|
607
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:active,
|
608
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:checked,
|
609
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:checked,
|
610
|
+
button.suggested-action.osd
|
611
|
+
button:backdrop:active,
|
612
|
+
button.suggested-action.osd
|
613
|
+
button:backdrop:checked,
|
614
|
+
button.suggested-action.osd
|
615
|
+
button.flat:backdrop:active,
|
616
|
+
button.suggested-action.osd
|
617
|
+
button.flat:backdrop:checked {
|
618
|
+
color: white;
|
619
|
+
border-color: #5191e0;
|
620
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc); }
|
621
|
+
popover.background.touch-selection button.suggested-action:backdrop:disabled, popover.background.magnifier button.suggested-action:backdrop:disabled, popover.background.touch-selection button.suggested-action.flat:backdrop:disabled, popover.background.magnifier button.suggested-action.flat:backdrop:disabled,
|
622
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled,
|
623
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled,
|
624
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled,
|
625
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled,
|
626
|
+
button.suggested-action:backdrop:disabled,
|
627
|
+
button.suggested-action.flat:backdrop:disabled,
|
628
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled,
|
629
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled,
|
630
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:disabled,
|
631
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled,
|
632
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled,
|
633
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled,
|
634
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled,
|
635
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled,
|
636
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled,
|
637
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled,
|
638
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled,
|
639
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled,
|
640
|
+
button.suggested-action.osd
|
641
|
+
button:backdrop:disabled,
|
642
|
+
button.suggested-action.osd
|
643
|
+
button.flat:backdrop:disabled {
|
644
|
+
color: rgba(186, 194, 214, 0.35);
|
645
|
+
border-color: rgba(75, 79, 87, 0.35);
|
646
|
+
background-image: linear-gradient(to bottom, rgba(59, 65, 77, 0.35), rgba(56, 63, 74, 0.35)); }
|
647
|
+
popover.background.touch-selection button.suggested-action:backdrop:disabled > .label, popover.background.magnifier button.suggested-action:backdrop:disabled > .label, popover.background.touch-selection button.suggested-action.flat:backdrop:disabled > .label, popover.background.magnifier button.suggested-action.flat:backdrop:disabled > .label,
|
648
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled > .label,
|
649
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled > .label,
|
650
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button:backdrop:disabled > .label,
|
651
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled > .label,
|
652
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled > .label,
|
653
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled > .label,
|
654
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled > .label,
|
655
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled > .label,
|
656
|
+
button.suggested-action:backdrop:disabled > .label,
|
657
|
+
button.suggested-action.flat:backdrop:disabled > .label,
|
658
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled > .label,
|
659
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled > .label,
|
660
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:disabled > .label,
|
661
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled > .label,
|
662
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled > .label,
|
663
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled > .label,
|
664
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled > .label,
|
665
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled > .label,
|
666
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled > .label,
|
667
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled > .label,
|
668
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled > .label,
|
669
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled > .label,
|
670
|
+
button.suggested-action.osd
|
671
|
+
button:backdrop:disabled > .label,
|
672
|
+
button.suggested-action.osd
|
673
|
+
button.flat:backdrop:disabled > .label {
|
674
|
+
color: inherit; }
|
675
|
+
popover.background.touch-selection button.suggested-action:backdrop:disabled:active, popover.background.magnifier button.suggested-action:backdrop:disabled:active, popover.background.touch-selection button.suggested-action:backdrop:disabled:checked, popover.background.magnifier button.suggested-action:backdrop:disabled:checked, popover.background.touch-selection button.suggested-action.flat:backdrop:disabled:active, popover.background.magnifier button.suggested-action.flat:backdrop:disabled:active, popover.background.touch-selection button.suggested-action.flat:backdrop:disabled:checked, popover.background.magnifier button.suggested-action.flat:backdrop:disabled:checked,
|
676
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:active,
|
677
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:active,
|
678
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:checked,
|
679
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:checked,
|
680
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:active,
|
681
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:active,
|
682
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:checked,
|
683
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:checked,
|
684
|
+
button.suggested-action:backdrop:disabled:active,
|
685
|
+
button.suggested-action:backdrop:disabled:checked,
|
686
|
+
button.suggested-action.flat:backdrop:disabled:active,
|
687
|
+
button.suggested-action.flat:backdrop:disabled:checked,
|
688
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled:active,
|
689
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:active,
|
690
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:disabled:active,
|
691
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:active,
|
692
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled:checked,
|
693
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:checked,
|
694
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:disabled:checked,
|
695
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:checked,
|
696
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled:active,
|
697
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:active,
|
698
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled:active,
|
699
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:active,
|
700
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled:checked,
|
701
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:checked,
|
702
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled:checked,
|
703
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:checked,
|
704
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:active,
|
705
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:active,
|
706
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:checked,
|
707
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:checked,
|
708
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:active,
|
709
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:active,
|
710
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:checked,
|
711
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:checked,
|
712
|
+
button.suggested-action.osd
|
713
|
+
button:backdrop:disabled:active,
|
714
|
+
button.suggested-action.osd
|
715
|
+
button:backdrop:disabled:checked,
|
716
|
+
button.suggested-action.osd
|
717
|
+
button.flat:backdrop:disabled:active,
|
718
|
+
button.suggested-action.osd
|
719
|
+
button.flat:backdrop:disabled:checked {
|
720
|
+
color: rgba(232, 232, 232, 0.35);
|
721
|
+
border-color: rgba(57, 130, 220, 0.35);
|
722
|
+
background-image: linear-gradient(to bottom, rgba(65, 135, 221, 0.35), rgba(38, 117, 214, 0.35)); }
|
723
|
+
popover.background.touch-selection button.suggested-action:backdrop:disabled:active > .label, popover.background.magnifier button.suggested-action:backdrop:disabled:active > .label, popover.background.touch-selection button.suggested-action:backdrop:disabled:checked > .label, popover.background.magnifier button.suggested-action:backdrop:disabled:checked > .label, popover.background.touch-selection button.suggested-action.flat:backdrop:disabled:active > .label, popover.background.magnifier button.suggested-action.flat:backdrop:disabled:active > .label, popover.background.touch-selection button.suggested-action.flat:backdrop:disabled:checked > .label, popover.background.magnifier button.suggested-action.flat:backdrop:disabled:checked > .label,
|
724
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:active > .label,
|
725
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled:active > .label,
|
726
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button:backdrop:disabled:active > .label,
|
727
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:active > .label,
|
728
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:checked > .label,
|
729
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled:checked > .label,
|
730
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button:backdrop:disabled:checked > .label,
|
731
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:checked > .label,
|
732
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:active > .label,
|
733
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled:active > .label,
|
734
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled:active > .label,
|
735
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:active > .label,
|
736
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:checked > .label,
|
737
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled:checked > .label,
|
738
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled:checked > .label,
|
739
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:checked > .label,
|
740
|
+
button.suggested-action:backdrop:disabled:active > .label,
|
741
|
+
button.suggested-action:backdrop:disabled:checked > .label,
|
742
|
+
button.suggested-action.flat:backdrop:disabled:active > .label,
|
743
|
+
button.suggested-action.flat:backdrop:disabled:checked > .label,
|
744
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled:active > .label,
|
745
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:active > .label,
|
746
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:disabled:active > .label,
|
747
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:active > .label,
|
748
|
+
button.suggested-action.osd popover.background.touch-selection button:backdrop:disabled:checked > .label,
|
749
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:checked > .label,
|
750
|
+
button.suggested-action.osd popover.background.magnifier button:backdrop:disabled:checked > .label,
|
751
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:checked > .label,
|
752
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled:active > .label,
|
753
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:active > .label,
|
754
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled:active > .label,
|
755
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:active > .label,
|
756
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled:checked > .label,
|
757
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:checked > .label,
|
758
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled:checked > .label,
|
759
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:checked > .label,
|
760
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:active > .label,
|
761
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:active > .label,
|
762
|
+
popover.background.touch-selection button.suggested-action.osd button:backdrop:disabled:checked > .label,
|
763
|
+
popover.background.magnifier button.suggested-action.osd button:backdrop:disabled:checked > .label,
|
764
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:active > .label,
|
765
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:active > .label,
|
766
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled:checked > .label,
|
767
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled:checked > .label,
|
768
|
+
button.suggested-action.osd
|
769
|
+
button:backdrop:disabled:active > .label,
|
770
|
+
button.suggested-action.osd
|
771
|
+
button:backdrop:disabled:checked > .label,
|
772
|
+
button.suggested-action.osd
|
773
|
+
button.flat:backdrop:disabled:active > .label,
|
774
|
+
button.suggested-action.osd
|
775
|
+
button.flat:backdrop:disabled:checked > .label {
|
776
|
+
color: inherit; }
|
777
|
+
popover.background.touch-selection button.suggested-action.flat:backdrop, popover.background.magnifier button.suggested-action.flat:backdrop, popover.background.touch-selection button.suggested-action.flat:disabled, popover.background.magnifier button.suggested-action.flat:disabled, popover.background.touch-selection button.suggested-action.flat:backdrop:disabled, popover.background.magnifier button.suggested-action.flat:backdrop:disabled,
|
778
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop,
|
779
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop,
|
780
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:disabled,
|
781
|
+
popover.background.magnifier button.suggested-action.osd button.flat:disabled,
|
782
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled,
|
783
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled,
|
784
|
+
button.suggested-action.flat:backdrop,
|
785
|
+
button.suggested-action.flat:disabled,
|
786
|
+
button.suggested-action.flat:backdrop:disabled,
|
787
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop,
|
788
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop,
|
789
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop,
|
790
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop,
|
791
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:disabled,
|
792
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:disabled,
|
793
|
+
button.suggested-action.osd popover.background.magnifier button.flat:disabled,
|
794
|
+
popover.background.magnifier button.suggested-action.osd button.flat:disabled,
|
795
|
+
button.suggested-action.osd popover.background.touch-selection button.flat:backdrop:disabled,
|
796
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled,
|
797
|
+
button.suggested-action.osd popover.background.magnifier button.flat:backdrop:disabled,
|
798
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled,
|
799
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop,
|
800
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop,
|
801
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:disabled,
|
802
|
+
popover.background.magnifier button.suggested-action.osd button.flat:disabled,
|
803
|
+
popover.background.touch-selection button.suggested-action.osd button.flat:backdrop:disabled,
|
804
|
+
popover.background.magnifier button.suggested-action.osd button.flat:backdrop:disabled,
|
805
|
+
button.suggested-action.osd
|
806
|
+
button.flat:backdrop,
|
807
|
+
button.suggested-action.osd
|
808
|
+
button.flat:disabled,
|
809
|
+
button.suggested-action.osd
|
810
|
+
button.flat:backdrop:disabled {
|
811
|
+
border-color: rgba(255, 255, 255, 0);
|
812
|
+
background-color: transparent;
|
813
|
+
background-image: none;
|
814
|
+
box-shadow: none;
|
815
|
+
color: #d3d8e5;
|
816
|
+
text-shadow: none;
|
817
|
+
-gtk-icon-shadow: none;
|
818
|
+
color: rgba(81, 145, 224, 0.8); }
|
819
|
+
popover.background.touch-selection button.suggested-action:disabled, popover.background.magnifier button.suggested-action:disabled,
|
820
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled,
|
821
|
+
popover.background.magnifier button.suggested-action.osd button:disabled,
|
822
|
+
button.suggested-action:disabled,
|
823
|
+
button.suggested-action.osd popover.background.touch-selection button:disabled,
|
824
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled,
|
825
|
+
button.suggested-action.osd popover.background.magnifier button:disabled,
|
826
|
+
popover.background.magnifier button.suggested-action.osd button:disabled,
|
827
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled,
|
828
|
+
popover.background.magnifier button.suggested-action.osd button:disabled,
|
829
|
+
button.suggested-action.osd
|
830
|
+
button:disabled {
|
831
|
+
color: rgba(186, 194, 214, 0.35);
|
832
|
+
border-color: rgba(75, 79, 87, 0.35);
|
833
|
+
background-image: linear-gradient(to bottom, rgba(59, 65, 77, 0.35), rgba(56, 63, 74, 0.35)); }
|
834
|
+
popover.background.touch-selection button.suggested-action:disabled > .label, popover.background.magnifier button.suggested-action:disabled > .label,
|
835
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled > .label,
|
836
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button:disabled > .label,
|
837
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button:disabled > .label,
|
838
|
+
popover.background.magnifier button.suggested-action.osd button:disabled > .label,
|
839
|
+
button.suggested-action:disabled > .label,
|
840
|
+
button.suggested-action.osd popover.background.touch-selection button:disabled > .label,
|
841
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled > .label,
|
842
|
+
button.suggested-action.osd popover.background.magnifier button:disabled > .label,
|
843
|
+
popover.background.magnifier button.suggested-action.osd button:disabled > .label,
|
844
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled > .label,
|
845
|
+
popover.background.magnifier button.suggested-action.osd button:disabled > .label,
|
846
|
+
button.suggested-action.osd
|
847
|
+
button:disabled > .label {
|
848
|
+
color: inherit; }
|
849
|
+
popover.background.touch-selection button.suggested-action:disabled:active, popover.background.magnifier button.suggested-action:disabled:active, popover.background.touch-selection button.suggested-action:disabled:checked, popover.background.magnifier button.suggested-action:disabled:checked,
|
850
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:active,
|
851
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:active,
|
852
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:checked,
|
853
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:checked,
|
854
|
+
button.suggested-action:disabled:active,
|
855
|
+
button.suggested-action:disabled:checked,
|
856
|
+
button.suggested-action.osd popover.background.touch-selection button:disabled:active,
|
857
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:active,
|
858
|
+
button.suggested-action.osd popover.background.magnifier button:disabled:active,
|
859
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:active,
|
860
|
+
button.suggested-action.osd popover.background.touch-selection button:disabled:checked,
|
861
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:checked,
|
862
|
+
button.suggested-action.osd popover.background.magnifier button:disabled:checked,
|
863
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:checked,
|
864
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:active,
|
865
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:active,
|
866
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:checked,
|
867
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:checked,
|
868
|
+
button.suggested-action.osd
|
869
|
+
button:disabled:active,
|
870
|
+
button.suggested-action.osd
|
871
|
+
button:disabled:checked {
|
872
|
+
color: rgba(232, 232, 232, 0.35);
|
873
|
+
border-color: rgba(57, 130, 220, 0.35);
|
874
|
+
background-image: linear-gradient(to bottom, rgba(65, 135, 221, 0.35), rgba(38, 117, 214, 0.35)); }
|
875
|
+
popover.background.touch-selection button.suggested-action:disabled:active > .label, popover.background.magnifier button.suggested-action:disabled:active > .label, popover.background.touch-selection button.suggested-action:disabled:checked > .label, popover.background.magnifier button.suggested-action:disabled:checked > .label,
|
876
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:active > .label,
|
877
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button:disabled:active > .label,
|
878
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button:disabled:active > .label,
|
879
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:active > .label,
|
880
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:checked > .label,
|
881
|
+
popover.background.magnifier button.suggested-action.osd popover.background.touch-selection button:disabled:checked > .label,
|
882
|
+
popover.background.touch-selection button.suggested-action.osd popover.background.magnifier button:disabled:checked > .label,
|
883
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:checked > .label,
|
884
|
+
button.suggested-action:disabled:active > .label,
|
885
|
+
button.suggested-action:disabled:checked > .label,
|
886
|
+
button.suggested-action.osd popover.background.touch-selection button:disabled:active > .label,
|
887
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:active > .label,
|
888
|
+
button.suggested-action.osd popover.background.magnifier button:disabled:active > .label,
|
889
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:active > .label,
|
890
|
+
button.suggested-action.osd popover.background.touch-selection button:disabled:checked > .label,
|
891
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:checked > .label,
|
892
|
+
button.suggested-action.osd popover.background.magnifier button:disabled:checked > .label,
|
893
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:checked > .label,
|
894
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:active > .label,
|
895
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:active > .label,
|
896
|
+
popover.background.touch-selection button.suggested-action.osd button:disabled:checked > .label,
|
897
|
+
popover.background.magnifier button.suggested-action.osd button:disabled:checked > .label,
|
898
|
+
button.suggested-action.osd
|
899
|
+
button:disabled:active > .label,
|
900
|
+
button.suggested-action.osd
|
901
|
+
button:disabled:checked > .label {
|
902
|
+
color: inherit; }
|
903
|
+
|
904
|
+
popover.background.touch-selection button.destructive-action, popover.background.magnifier button.destructive-action,
|
905
|
+
popover.background.touch-selection button.destructive-action.osd button,
|
906
|
+
popover.background.magnifier button.destructive-action.osd button,
|
907
|
+
button.destructive-action,
|
908
|
+
button.destructive-action.osd popover.background.touch-selection button,
|
909
|
+
popover.background.touch-selection button.destructive-action.osd button,
|
910
|
+
button.destructive-action.osd popover.background.magnifier button,
|
911
|
+
popover.background.magnifier button.destructive-action.osd button,
|
912
|
+
popover.background.touch-selection button.destructive-action.osd button,
|
913
|
+
popover.background.magnifier button.destructive-action.osd button,
|
914
|
+
button.destructive-action.osd
|
915
|
+
button {
|
916
|
+
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
|
917
|
+
text-shadow: none;
|
918
|
+
-gtk-icon-shadow: none;
|
919
|
+
color: #eff1f5;
|
920
|
+
border-color: #da4453;
|
921
|
+
background-image: linear-gradient(to bottom, #da4655, #d93d4d); }
|
922
|
+
popover.background.touch-selection button.destructive-action.flat, popover.background.magnifier button.destructive-action.flat,
|
923
|
+
popover.background.touch-selection button.destructive-action.osd button.flat,
|
924
|
+
popover.background.magnifier button.destructive-action.osd button.flat,
|
925
|
+
button.destructive-action.flat,
|
926
|
+
button.destructive-action.osd popover.background.touch-selection button.flat,
|
927
|
+
popover.background.touch-selection button.destructive-action.osd button.flat,
|
928
|
+
button.destructive-action.osd popover.background.magnifier button.flat,
|
929
|
+
popover.background.magnifier button.destructive-action.osd button.flat,
|
930
|
+
popover.background.touch-selection button.destructive-action.osd button.flat,
|
931
|
+
popover.background.magnifier button.destructive-action.osd button.flat,
|
932
|
+
button.destructive-action.osd
|
933
|
+
button.flat {
|
934
|
+
border-color: rgba(255, 255, 255, 0);
|
935
|
+
background-color: transparent;
|
936
|
+
background-image: none;
|
937
|
+
box-shadow: none;
|
938
|
+
color: #d3d8e5;
|
939
|
+
text-shadow: none;
|
940
|
+
-gtk-icon-shadow: none;
|
941
|
+
color: #da4453; }
|
942
|
+
popover.background.touch-selection button.destructive-action:hover, popover.background.magnifier button.destructive-action:hover,
|
943
|
+
popover.background.touch-selection button.destructive-action.osd button:hover,
|
944
|
+
popover.background.magnifier button.destructive-action.osd button:hover,
|
945
|
+
button.destructive-action:hover,
|
946
|
+
button.destructive-action.osd popover.background.touch-selection button:hover,
|
947
|
+
popover.background.touch-selection button.destructive-action.osd button:hover,
|
948
|
+
button.destructive-action.osd popover.background.magnifier button:hover,
|
949
|
+
popover.background.magnifier button.destructive-action.osd button:hover,
|
950
|
+
popover.background.touch-selection button.destructive-action.osd button:hover,
|
951
|
+
popover.background.magnifier button.destructive-action.osd button:hover,
|
952
|
+
button.destructive-action.osd
|
953
|
+
button:hover {
|
954
|
+
color: white;
|
955
|
+
border-color: #da4453; }
|
956
|
+
popover.background.touch-selection button.destructive-action:active, popover.background.magnifier button.destructive-action:active, popover.background.touch-selection button.destructive-action:checked, popover.background.magnifier button.destructive-action:checked,
|
957
|
+
popover.background.touch-selection button.destructive-action.osd button:active,
|
958
|
+
popover.background.magnifier button.destructive-action.osd button:active,
|
959
|
+
popover.background.touch-selection button.destructive-action.osd button:checked,
|
960
|
+
popover.background.magnifier button.destructive-action.osd button:checked,
|
961
|
+
button.destructive-action:active,
|
962
|
+
button.destructive-action:checked,
|
963
|
+
button.destructive-action.osd popover.background.touch-selection button:active,
|
964
|
+
popover.background.touch-selection button.destructive-action.osd button:active,
|
965
|
+
button.destructive-action.osd popover.background.magnifier button:active,
|
966
|
+
popover.background.magnifier button.destructive-action.osd button:active,
|
967
|
+
button.destructive-action.osd popover.background.touch-selection button:checked,
|
968
|
+
popover.background.touch-selection button.destructive-action.osd button:checked,
|
969
|
+
button.destructive-action.osd popover.background.magnifier button:checked,
|
970
|
+
popover.background.magnifier button.destructive-action.osd button:checked,
|
971
|
+
popover.background.touch-selection button.destructive-action.osd button:active,
|
972
|
+
popover.background.magnifier button.destructive-action.osd button:active,
|
973
|
+
popover.background.touch-selection button.destructive-action.osd button:checked,
|
974
|
+
popover.background.magnifier button.destructive-action.osd button:checked,
|
975
|
+
button.destructive-action.osd
|
976
|
+
button:active,
|
977
|
+
button.destructive-action.osd
|
978
|
+
button:checked {
|
979
|
+
color: white;
|
980
|
+
border-color: #da4453;
|
981
|
+
background-image: linear-gradient(to bottom, #db4b5a, #d62e3f); }
|
982
|
+
popover.background.touch-selection button.destructive-action:backdrop, popover.background.magnifier button.destructive-action:backdrop, popover.background.touch-selection button.destructive-action.flat:backdrop, popover.background.magnifier button.destructive-action.flat:backdrop,
|
983
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop,
|
984
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop,
|
985
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop,
|
986
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop,
|
987
|
+
button.destructive-action:backdrop,
|
988
|
+
button.destructive-action.flat:backdrop,
|
989
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop,
|
990
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop,
|
991
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop,
|
992
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop,
|
993
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop,
|
994
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop,
|
995
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop,
|
996
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop,
|
997
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop,
|
998
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop,
|
999
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop,
|
1000
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop,
|
1001
|
+
button.destructive-action.osd
|
1002
|
+
button:backdrop,
|
1003
|
+
button.destructive-action.osd
|
1004
|
+
button.flat:backdrop {
|
1005
|
+
color: white;
|
1006
|
+
border-color: #535760;
|
1007
|
+
background-image: linear-gradient(to bottom, #da4655, #d93d4d); }
|
1008
|
+
popover.background.touch-selection button.destructive-action:backdrop:active, popover.background.magnifier button.destructive-action:backdrop:active, popover.background.touch-selection button.destructive-action:backdrop:checked, popover.background.magnifier button.destructive-action:backdrop:checked, popover.background.touch-selection button.destructive-action.flat:backdrop:active, popover.background.magnifier button.destructive-action.flat:backdrop:active, popover.background.touch-selection button.destructive-action.flat:backdrop:checked, popover.background.magnifier button.destructive-action.flat:backdrop:checked,
|
1009
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:active,
|
1010
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:active,
|
1011
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:checked,
|
1012
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:checked,
|
1013
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:active,
|
1014
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:active,
|
1015
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:checked,
|
1016
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:checked,
|
1017
|
+
button.destructive-action:backdrop:active,
|
1018
|
+
button.destructive-action:backdrop:checked,
|
1019
|
+
button.destructive-action.flat:backdrop:active,
|
1020
|
+
button.destructive-action.flat:backdrop:checked,
|
1021
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:active,
|
1022
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:active,
|
1023
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:active,
|
1024
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:active,
|
1025
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:checked,
|
1026
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:checked,
|
1027
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:checked,
|
1028
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:checked,
|
1029
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:active,
|
1030
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:active,
|
1031
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:active,
|
1032
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:active,
|
1033
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:checked,
|
1034
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:checked,
|
1035
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:checked,
|
1036
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:checked,
|
1037
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:active,
|
1038
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:active,
|
1039
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:checked,
|
1040
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:checked,
|
1041
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:active,
|
1042
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:active,
|
1043
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:checked,
|
1044
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:checked,
|
1045
|
+
button.destructive-action.osd
|
1046
|
+
button:backdrop:active,
|
1047
|
+
button.destructive-action.osd
|
1048
|
+
button:backdrop:checked,
|
1049
|
+
button.destructive-action.osd
|
1050
|
+
button.flat:backdrop:active,
|
1051
|
+
button.destructive-action.osd
|
1052
|
+
button.flat:backdrop:checked {
|
1053
|
+
color: white;
|
1054
|
+
border-color: #da4453;
|
1055
|
+
background-image: linear-gradient(to bottom, #db4b5a, #d62e3f); }
|
1056
|
+
popover.background.touch-selection button.destructive-action:backdrop:disabled, popover.background.magnifier button.destructive-action:backdrop:disabled, popover.background.touch-selection button.destructive-action.flat:backdrop:disabled, popover.background.magnifier button.destructive-action.flat:backdrop:disabled,
|
1057
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled,
|
1058
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled,
|
1059
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled,
|
1060
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled,
|
1061
|
+
button.destructive-action:backdrop:disabled,
|
1062
|
+
button.destructive-action.flat:backdrop:disabled,
|
1063
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled,
|
1064
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled,
|
1065
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:disabled,
|
1066
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled,
|
1067
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled,
|
1068
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled,
|
1069
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled,
|
1070
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled,
|
1071
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled,
|
1072
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled,
|
1073
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled,
|
1074
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled,
|
1075
|
+
button.destructive-action.osd
|
1076
|
+
button:backdrop:disabled,
|
1077
|
+
button.destructive-action.osd
|
1078
|
+
button.flat:backdrop:disabled {
|
1079
|
+
color: rgba(186, 194, 214, 0.35);
|
1080
|
+
border-color: rgba(75, 79, 87, 0.35);
|
1081
|
+
background-image: linear-gradient(to bottom, rgba(59, 65, 77, 0.35), rgba(56, 63, 74, 0.35)); }
|
1082
|
+
popover.background.touch-selection button.destructive-action:backdrop:disabled > .label, popover.background.magnifier button.destructive-action:backdrop:disabled > .label, popover.background.touch-selection button.destructive-action.flat:backdrop:disabled > .label, popover.background.magnifier button.destructive-action.flat:backdrop:disabled > .label,
|
1083
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled > .label,
|
1084
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled > .label,
|
1085
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button:backdrop:disabled > .label,
|
1086
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled > .label,
|
1087
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled > .label,
|
1088
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled > .label,
|
1089
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled > .label,
|
1090
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled > .label,
|
1091
|
+
button.destructive-action:backdrop:disabled > .label,
|
1092
|
+
button.destructive-action.flat:backdrop:disabled > .label,
|
1093
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled > .label,
|
1094
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled > .label,
|
1095
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:disabled > .label,
|
1096
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled > .label,
|
1097
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled > .label,
|
1098
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled > .label,
|
1099
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled > .label,
|
1100
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled > .label,
|
1101
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled > .label,
|
1102
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled > .label,
|
1103
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled > .label,
|
1104
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled > .label,
|
1105
|
+
button.destructive-action.osd
|
1106
|
+
button:backdrop:disabled > .label,
|
1107
|
+
button.destructive-action.osd
|
1108
|
+
button.flat:backdrop:disabled > .label {
|
1109
|
+
color: inherit; }
|
1110
|
+
popover.background.touch-selection button.destructive-action:backdrop:disabled:active, popover.background.magnifier button.destructive-action:backdrop:disabled:active, popover.background.touch-selection button.destructive-action:backdrop:disabled:checked, popover.background.magnifier button.destructive-action:backdrop:disabled:checked, popover.background.touch-selection button.destructive-action.flat:backdrop:disabled:active, popover.background.magnifier button.destructive-action.flat:backdrop:disabled:active, popover.background.touch-selection button.destructive-action.flat:backdrop:disabled:checked, popover.background.magnifier button.destructive-action.flat:backdrop:disabled:checked,
|
1111
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:active,
|
1112
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:active,
|
1113
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:checked,
|
1114
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:checked,
|
1115
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:active,
|
1116
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:active,
|
1117
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:checked,
|
1118
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:checked,
|
1119
|
+
button.destructive-action:backdrop:disabled:active,
|
1120
|
+
button.destructive-action:backdrop:disabled:checked,
|
1121
|
+
button.destructive-action.flat:backdrop:disabled:active,
|
1122
|
+
button.destructive-action.flat:backdrop:disabled:checked,
|
1123
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled:active,
|
1124
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:active,
|
1125
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:disabled:active,
|
1126
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:active,
|
1127
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled:checked,
|
1128
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:checked,
|
1129
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:disabled:checked,
|
1130
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:checked,
|
1131
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled:active,
|
1132
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:active,
|
1133
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled:active,
|
1134
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:active,
|
1135
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled:checked,
|
1136
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:checked,
|
1137
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled:checked,
|
1138
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:checked,
|
1139
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:active,
|
1140
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:active,
|
1141
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:checked,
|
1142
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:checked,
|
1143
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:active,
|
1144
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:active,
|
1145
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:checked,
|
1146
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:checked,
|
1147
|
+
button.destructive-action.osd
|
1148
|
+
button:backdrop:disabled:active,
|
1149
|
+
button.destructive-action.osd
|
1150
|
+
button:backdrop:disabled:checked,
|
1151
|
+
button.destructive-action.osd
|
1152
|
+
button.flat:backdrop:disabled:active,
|
1153
|
+
button.destructive-action.osd
|
1154
|
+
button.flat:backdrop:disabled:checked {
|
1155
|
+
color: rgba(232, 232, 232, 0.35);
|
1156
|
+
border-color: rgba(214, 46, 63, 0.35);
|
1157
|
+
background-image: linear-gradient(to bottom, rgba(215, 53, 69, 0.35), rgba(197, 39, 55, 0.35)); }
|
1158
|
+
popover.background.touch-selection button.destructive-action:backdrop:disabled:active > .label, popover.background.magnifier button.destructive-action:backdrop:disabled:active > .label, popover.background.touch-selection button.destructive-action:backdrop:disabled:checked > .label, popover.background.magnifier button.destructive-action:backdrop:disabled:checked > .label, popover.background.touch-selection button.destructive-action.flat:backdrop:disabled:active > .label, popover.background.magnifier button.destructive-action.flat:backdrop:disabled:active > .label, popover.background.touch-selection button.destructive-action.flat:backdrop:disabled:checked > .label, popover.background.magnifier button.destructive-action.flat:backdrop:disabled:checked > .label,
|
1159
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:active > .label,
|
1160
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled:active > .label,
|
1161
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button:backdrop:disabled:active > .label,
|
1162
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:active > .label,
|
1163
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:checked > .label,
|
1164
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled:checked > .label,
|
1165
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button:backdrop:disabled:checked > .label,
|
1166
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:checked > .label,
|
1167
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:active > .label,
|
1168
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled:active > .label,
|
1169
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled:active > .label,
|
1170
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:active > .label,
|
1171
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:checked > .label,
|
1172
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled:checked > .label,
|
1173
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled:checked > .label,
|
1174
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:checked > .label,
|
1175
|
+
button.destructive-action:backdrop:disabled:active > .label,
|
1176
|
+
button.destructive-action:backdrop:disabled:checked > .label,
|
1177
|
+
button.destructive-action.flat:backdrop:disabled:active > .label,
|
1178
|
+
button.destructive-action.flat:backdrop:disabled:checked > .label,
|
1179
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled:active > .label,
|
1180
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:active > .label,
|
1181
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:disabled:active > .label,
|
1182
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:active > .label,
|
1183
|
+
button.destructive-action.osd popover.background.touch-selection button:backdrop:disabled:checked > .label,
|
1184
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:checked > .label,
|
1185
|
+
button.destructive-action.osd popover.background.magnifier button:backdrop:disabled:checked > .label,
|
1186
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:checked > .label,
|
1187
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled:active > .label,
|
1188
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:active > .label,
|
1189
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled:active > .label,
|
1190
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:active > .label,
|
1191
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled:checked > .label,
|
1192
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:checked > .label,
|
1193
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled:checked > .label,
|
1194
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:checked > .label,
|
1195
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:active > .label,
|
1196
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:active > .label,
|
1197
|
+
popover.background.touch-selection button.destructive-action.osd button:backdrop:disabled:checked > .label,
|
1198
|
+
popover.background.magnifier button.destructive-action.osd button:backdrop:disabled:checked > .label,
|
1199
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:active > .label,
|
1200
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:active > .label,
|
1201
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled:checked > .label,
|
1202
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled:checked > .label,
|
1203
|
+
button.destructive-action.osd
|
1204
|
+
button:backdrop:disabled:active > .label,
|
1205
|
+
button.destructive-action.osd
|
1206
|
+
button:backdrop:disabled:checked > .label,
|
1207
|
+
button.destructive-action.osd
|
1208
|
+
button.flat:backdrop:disabled:active > .label,
|
1209
|
+
button.destructive-action.osd
|
1210
|
+
button.flat:backdrop:disabled:checked > .label {
|
1211
|
+
color: inherit; }
|
1212
|
+
popover.background.touch-selection button.destructive-action.flat:backdrop, popover.background.magnifier button.destructive-action.flat:backdrop, popover.background.touch-selection button.destructive-action.flat:disabled, popover.background.magnifier button.destructive-action.flat:disabled, popover.background.touch-selection button.destructive-action.flat:backdrop:disabled, popover.background.magnifier button.destructive-action.flat:backdrop:disabled,
|
1213
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop,
|
1214
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop,
|
1215
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:disabled,
|
1216
|
+
popover.background.magnifier button.destructive-action.osd button.flat:disabled,
|
1217
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled,
|
1218
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled,
|
1219
|
+
button.destructive-action.flat:backdrop,
|
1220
|
+
button.destructive-action.flat:disabled,
|
1221
|
+
button.destructive-action.flat:backdrop:disabled,
|
1222
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop,
|
1223
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop,
|
1224
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop,
|
1225
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop,
|
1226
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:disabled,
|
1227
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:disabled,
|
1228
|
+
button.destructive-action.osd popover.background.magnifier button.flat:disabled,
|
1229
|
+
popover.background.magnifier button.destructive-action.osd button.flat:disabled,
|
1230
|
+
button.destructive-action.osd popover.background.touch-selection button.flat:backdrop:disabled,
|
1231
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled,
|
1232
|
+
button.destructive-action.osd popover.background.magnifier button.flat:backdrop:disabled,
|
1233
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled,
|
1234
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop,
|
1235
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop,
|
1236
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:disabled,
|
1237
|
+
popover.background.magnifier button.destructive-action.osd button.flat:disabled,
|
1238
|
+
popover.background.touch-selection button.destructive-action.osd button.flat:backdrop:disabled,
|
1239
|
+
popover.background.magnifier button.destructive-action.osd button.flat:backdrop:disabled,
|
1240
|
+
button.destructive-action.osd
|
1241
|
+
button.flat:backdrop,
|
1242
|
+
button.destructive-action.osd
|
1243
|
+
button.flat:disabled,
|
1244
|
+
button.destructive-action.osd
|
1245
|
+
button.flat:backdrop:disabled {
|
1246
|
+
border-color: rgba(255, 255, 255, 0);
|
1247
|
+
background-color: transparent;
|
1248
|
+
background-image: none;
|
1249
|
+
box-shadow: none;
|
1250
|
+
color: #d3d8e5;
|
1251
|
+
text-shadow: none;
|
1252
|
+
-gtk-icon-shadow: none;
|
1253
|
+
color: rgba(218, 68, 83, 0.8); }
|
1254
|
+
popover.background.touch-selection button.destructive-action:disabled, popover.background.magnifier button.destructive-action:disabled,
|
1255
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled,
|
1256
|
+
popover.background.magnifier button.destructive-action.osd button:disabled,
|
1257
|
+
button.destructive-action:disabled,
|
1258
|
+
button.destructive-action.osd popover.background.touch-selection button:disabled,
|
1259
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled,
|
1260
|
+
button.destructive-action.osd popover.background.magnifier button:disabled,
|
1261
|
+
popover.background.magnifier button.destructive-action.osd button:disabled,
|
1262
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled,
|
1263
|
+
popover.background.magnifier button.destructive-action.osd button:disabled,
|
1264
|
+
button.destructive-action.osd
|
1265
|
+
button:disabled {
|
1266
|
+
color: rgba(186, 194, 214, 0.35);
|
1267
|
+
border-color: rgba(75, 79, 87, 0.35);
|
1268
|
+
background-image: linear-gradient(to bottom, rgba(59, 65, 77, 0.35), rgba(56, 63, 74, 0.35)); }
|
1269
|
+
popover.background.touch-selection button.destructive-action:disabled > .label, popover.background.magnifier button.destructive-action:disabled > .label,
|
1270
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled > .label,
|
1271
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button:disabled > .label,
|
1272
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button:disabled > .label,
|
1273
|
+
popover.background.magnifier button.destructive-action.osd button:disabled > .label,
|
1274
|
+
button.destructive-action:disabled > .label,
|
1275
|
+
button.destructive-action.osd popover.background.touch-selection button:disabled > .label,
|
1276
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled > .label,
|
1277
|
+
button.destructive-action.osd popover.background.magnifier button:disabled > .label,
|
1278
|
+
popover.background.magnifier button.destructive-action.osd button:disabled > .label,
|
1279
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled > .label,
|
1280
|
+
popover.background.magnifier button.destructive-action.osd button:disabled > .label,
|
1281
|
+
button.destructive-action.osd
|
1282
|
+
button:disabled > .label {
|
1283
|
+
color: inherit; }
|
1284
|
+
popover.background.touch-selection button.destructive-action:disabled:active, popover.background.magnifier button.destructive-action:disabled:active, popover.background.touch-selection button.destructive-action:disabled:checked, popover.background.magnifier button.destructive-action:disabled:checked,
|
1285
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:active,
|
1286
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:active,
|
1287
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:checked,
|
1288
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:checked,
|
1289
|
+
button.destructive-action:disabled:active,
|
1290
|
+
button.destructive-action:disabled:checked,
|
1291
|
+
button.destructive-action.osd popover.background.touch-selection button:disabled:active,
|
1292
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:active,
|
1293
|
+
button.destructive-action.osd popover.background.magnifier button:disabled:active,
|
1294
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:active,
|
1295
|
+
button.destructive-action.osd popover.background.touch-selection button:disabled:checked,
|
1296
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:checked,
|
1297
|
+
button.destructive-action.osd popover.background.magnifier button:disabled:checked,
|
1298
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:checked,
|
1299
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:active,
|
1300
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:active,
|
1301
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:checked,
|
1302
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:checked,
|
1303
|
+
button.destructive-action.osd
|
1304
|
+
button:disabled:active,
|
1305
|
+
button.destructive-action.osd
|
1306
|
+
button:disabled:checked {
|
1307
|
+
color: rgba(232, 232, 232, 0.35);
|
1308
|
+
border-color: rgba(57, 130, 220, 0.35);
|
1309
|
+
background-image: linear-gradient(to bottom, rgba(215, 53, 69, 0.35), rgba(197, 39, 55, 0.35)); }
|
1310
|
+
popover.background.touch-selection button.destructive-action:disabled:active > .label, popover.background.magnifier button.destructive-action:disabled:active > .label, popover.background.touch-selection button.destructive-action:disabled:checked > .label, popover.background.magnifier button.destructive-action:disabled:checked > .label,
|
1311
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:active > .label,
|
1312
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button:disabled:active > .label,
|
1313
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button:disabled:active > .label,
|
1314
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:active > .label,
|
1315
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:checked > .label,
|
1316
|
+
popover.background.magnifier button.destructive-action.osd popover.background.touch-selection button:disabled:checked > .label,
|
1317
|
+
popover.background.touch-selection button.destructive-action.osd popover.background.magnifier button:disabled:checked > .label,
|
1318
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:checked > .label,
|
1319
|
+
button.destructive-action:disabled:active > .label,
|
1320
|
+
button.destructive-action:disabled:checked > .label,
|
1321
|
+
button.destructive-action.osd popover.background.touch-selection button:disabled:active > .label,
|
1322
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:active > .label,
|
1323
|
+
button.destructive-action.osd popover.background.magnifier button:disabled:active > .label,
|
1324
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:active > .label,
|
1325
|
+
button.destructive-action.osd popover.background.touch-selection button:disabled:checked > .label,
|
1326
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:checked > .label,
|
1327
|
+
button.destructive-action.osd popover.background.magnifier button:disabled:checked > .label,
|
1328
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:checked > .label,
|
1329
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:active > .label,
|
1330
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:active > .label,
|
1331
|
+
popover.background.touch-selection button.destructive-action.osd button:disabled:checked > .label,
|
1332
|
+
popover.background.magnifier button.destructive-action.osd button:disabled:checked > .label,
|
1333
|
+
button.destructive-action.osd
|
1334
|
+
button:disabled:active > .label,
|
1335
|
+
button.destructive-action.osd
|
1336
|
+
button:disabled:checked > .label {
|
1337
|
+
color: inherit; }
|
1338
|
+
|
1339
|
+
popover.background.touch-selection .stack-switcher > button > label, popover.background.magnifier .stack-switcher > button > label, .stack-switcher >
|
1340
|
+
button > label {
|
1341
|
+
padding-left: 6px;
|
1342
|
+
padding-right: 6px; }
|
1343
|
+
|
1344
|
+
popover.background.touch-selection .stack-switcher > button > image, popover.background.magnifier .stack-switcher > button > image, .stack-switcher >
|
1345
|
+
button > image {
|
1346
|
+
padding-left: 6px;
|
1347
|
+
padding-right: 6px;
|
1348
|
+
padding-top: 3px;
|
1349
|
+
padding-bottom: 3px; }
|
1350
|
+
|
1351
|
+
popover.background.touch-selection .stack-switcher > button.text-button, popover.background.magnifier .stack-switcher > button.text-button, .stack-switcher >
|
1352
|
+
button.text-button {
|
1353
|
+
padding: 6px; }
|
1354
|
+
|
1355
|
+
popover.background.touch-selection .stack-switcher > button.image-button, popover.background.magnifier .stack-switcher > button.image-button, .stack-switcher >
|
1356
|
+
button.image-button {
|
1357
|
+
padding: 3px 0px; }
|
1358
|
+
|
1359
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention:active > label, popover.background.magnifier .stack-switcher > button.needs-attention:active > label,
|
1360
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention:active > image,
|
1361
|
+
popover.background.magnifier .stack-switcher > button.needs-attention:active > image,
|
1362
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention:checked > label,
|
1363
|
+
popover.background.magnifier .stack-switcher > button.needs-attention:checked > label,
|
1364
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention:checked > image,
|
1365
|
+
popover.background.magnifier .stack-switcher > button.needs-attention:checked > image, .stack-switcher >
|
1366
|
+
button.needs-attention:active > label,
|
1367
|
+
.stack-switcher >
|
1368
|
+
button.needs-attention:active > image,
|
1369
|
+
.stack-switcher >
|
1370
|
+
button.needs-attention:checked > label,
|
1371
|
+
.stack-switcher >
|
1372
|
+
button.needs-attention:checked > image {
|
1373
|
+
animation: none;
|
1374
|
+
background-image: none; }
|
1375
|
+
|
1376
|
+
.inline-toolbar popover.background.touch-selection button, popover.background.touch-selection .inline-toolbar button, .inline-toolbar popover.background.magnifier button, popover.background.magnifier .inline-toolbar button, .inline-toolbar popover.background.touch-selection button:backdrop, popover.background.touch-selection .inline-toolbar button:backdrop, .inline-toolbar popover.background.magnifier button:backdrop, popover.background.magnifier .inline-toolbar button:backdrop, .inline-toolbar
|
1377
|
+
button, .inline-toolbar
|
1378
|
+
button:backdrop {
|
1379
|
+
border-radius: 3px;
|
1380
|
+
border-width: 1px; }
|
1381
|
+
|
1382
|
+
.primary-toolbar popover.background.touch-selection button, popover.background.touch-selection .primary-toolbar button, .primary-toolbar popover.background.magnifier button, popover.background.magnifier .primary-toolbar button, .primary-toolbar
|
1383
|
+
button {
|
1384
|
+
-gtk-icon-shadow: none; }
|
1385
|
+
|
1386
|
+
/**************
|
1387
|
+
* ComboBoxes *
|
1388
|
+
**************/
|
1389
|
+
combobox arrow {
|
1390
|
+
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
1391
|
+
min-height: 16px;
|
1392
|
+
min-width: 16px; }
|
1393
|
+
|
1394
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention > label, popover.background.magnifier .stack-switcher > button.needs-attention > label,
|
1395
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention > image,
|
1396
|
+
popover.background.magnifier .stack-switcher > button.needs-attention > image, .stack-switcher > button.needs-attention > label,
|
1397
|
+
.stack-switcher > button.needs-attention > image, stacksidebar.sidebar row.needs-attention > .label {
|
1398
|
+
animation: needs_attention 150ms ease-in;
|
1399
|
+
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#5191e0), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.5, to(#d3d8e5), to(transparent));
|
1400
|
+
background-size: 6px 6px, 6px 6px;
|
1401
|
+
background-repeat: no-repeat;
|
1402
|
+
background-position: right 3px, right 4px; }
|
1403
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention > label:backdrop, popover.background.magnifier .stack-switcher > button.needs-attention > label:backdrop,
|
1404
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention > image:backdrop,
|
1405
|
+
popover.background.magnifier .stack-switcher > button.needs-attention > image:backdrop, .stack-switcher > button.needs-attention > label:backdrop,
|
1406
|
+
.stack-switcher > button.needs-attention > image:backdrop, stacksidebar.sidebar row.needs-attention > .label:backdrop {
|
1407
|
+
background-size: 6px 6px, 0 0; }
|
1408
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention > label:dir(rtl), popover.background.magnifier .stack-switcher > button.needs-attention > label:dir(rtl),
|
1409
|
+
popover.background.touch-selection .stack-switcher > button.needs-attention > image:dir(rtl),
|
1410
|
+
popover.background.magnifier .stack-switcher > button.needs-attention > image:dir(rtl), .stack-switcher > button.needs-attention > label:dir(rtl),
|
1411
|
+
.stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar.sidebar row.needs-attention > .label:dir(rtl) {
|
1412
|
+
background-position: left 3px, left 4px; }
|
1413
|
+
|
1414
|
+
.linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl), .inline-toolbar popover.background.touch-selection button, popover.background.touch-selection .inline-toolbar button, .inline-toolbar popover.background.magnifier button, popover.background.magnifier .inline-toolbar button, .inline-toolbar button, .inline-toolbar button:backdrop, popover.background.touch-selection .linked > button, popover.background.magnifier .linked > button, .linked > button,
|
1415
|
+
.linked > button:hover,
|
1416
|
+
.linked > button:active,
|
1417
|
+
.linked > button:checked,
|
1418
|
+
.linked > button:backdrop {
|
1419
|
+
border-radius: 3px; }
|
1420
|
+
.linked > combobox > box > button.combo:dir(rtl), .inline-toolbar popover.background.touch-selection button:dir(rtl), popover.background.touch-selection .inline-toolbar button:dir(rtl), .inline-toolbar popover.background.magnifier button:dir(rtl), popover.background.magnifier .inline-toolbar button:dir(rtl), .inline-toolbar button:dir(rtl), .inline-toolbar button:dir(rtl):backdrop, popover.background.touch-selection .linked > button:dir(rtl), popover.background.magnifier .linked > button:dir(rtl), .linked > button:dir(rtl),
|
1421
|
+
.linked > button:dir(rtl):hover,
|
1422
|
+
.linked > button:dir(rtl):active,
|
1423
|
+
.linked > button:dir(rtl):checked,
|
1424
|
+
.linked > button:dir(rtl):backdrop {
|
1425
|
+
border-radius: 3px; }
|
1426
|
+
|
1427
|
+
.inline-toolbar popover.background.touch-selection button, popover.background.touch-selection .inline-toolbar button, .inline-toolbar popover.background.magnifier button, popover.background.magnifier .inline-toolbar button, .inline-toolbar button, .inline-toolbar button:backdrop, popover.background.touch-selection .linked > button, popover.background.magnifier .linked > button, .linked > button,
|
1428
|
+
.linked > button:hover,
|
1429
|
+
.linked > button:active,
|
1430
|
+
.linked > button:checked,
|
1431
|
+
.linked > button:backdrop {
|
1432
|
+
margin-left: 2px;
|
1433
|
+
margin-right: 2px; }
|
1434
|
+
.inline-toolbar popover.background.touch-selection button:first-child, popover.background.touch-selection .inline-toolbar button:first-child, .inline-toolbar popover.background.magnifier button:first-child, popover.background.magnifier .inline-toolbar button:first-child, .inline-toolbar button:first-child, popover.background.touch-selection .linked > button:first-child, popover.background.magnifier .linked > button:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo {
|
1435
|
+
border-radius: 3px;
|
1436
|
+
border-style: solid; }
|
1437
|
+
.inline-toolbar popover.background.touch-selection button:last-child, popover.background.touch-selection .inline-toolbar button:last-child, .inline-toolbar popover.background.magnifier button:last-child, popover.background.magnifier .inline-toolbar button:last-child, .inline-toolbar button:last-child, popover.background.touch-selection .linked > button:last-child, popover.background.magnifier .linked > button:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo {
|
1438
|
+
border-radius: 3px; }
|
1439
|
+
.inline-toolbar popover.background.touch-selection button:only-child, popover.background.touch-selection .inline-toolbar button:only-child, .inline-toolbar popover.background.magnifier button:only-child, popover.background.magnifier .inline-toolbar button:only-child, .inline-toolbar button:only-child, popover.background.touch-selection .linked > button:only-child, popover.background.magnifier .linked > button:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo {
|
1440
|
+
border-radius: 3px;
|
1441
|
+
border-style: solid; }
|
1442
|
+
|
1443
|
+
.linked.vertical > combobox > box > button.combo, popover.background.touch-selection .linked.vertical > button, popover.background.magnifier .linked.vertical > button, .linked.vertical > button,
|
1444
|
+
.linked.vertical > button:hover,
|
1445
|
+
.linked.vertical > button:active,
|
1446
|
+
.linked.vertical > button:checked,
|
1447
|
+
.linked.vertical > button:backdrop {
|
1448
|
+
border-style: solid;
|
1449
|
+
border-radius: 3px; }
|
1450
|
+
|
1451
|
+
popover.background.touch-selection .linked.vertical > button:first-child, popover.background.magnifier .linked.vertical > button:first-child, .linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo {
|
1452
|
+
border-radius: 3px; }
|
1453
|
+
|
1454
|
+
popover.background.touch-selection .linked.vertical > button:last-child, popover.background.magnifier .linked.vertical > button:last-child, .linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo {
|
1455
|
+
border-radius: 3px;
|
1456
|
+
border-style: solid; }
|
1457
|
+
|
1458
|
+
popover.background.touch-selection .linked.vertical > button:only-child, popover.background.magnifier .linked.vertical > button:only-child, .linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo {
|
1459
|
+
border-radius: 3px;
|
1460
|
+
border-style: solid; }
|
1461
|
+
|
1462
|
+
.app-notification button.flat,
|
1463
|
+
.app-notification.frame button.flat, .app-notification button.flat:hover,
|
1464
|
+
.app-notification.frame button.flat:hover, .app-notification button.flat:active,
|
1465
|
+
.app-notification.frame button.flat:active, .app-notification button.flat:backdrop, .app-notification button.flat:disabled, .app-notification button.flat:backdrop:disabled,
|
1466
|
+
.app-notification.frame button.flat:backdrop,
|
1467
|
+
.app-notification.frame button.flat:disabled,
|
1468
|
+
.app-notification.frame button.flat:backdrop:disabled, calendar.button, calendar.button:hover, calendar.button:active, calendar.button:backdrop,
|
1469
|
+
headerbar button.flat:disabled, button:link,
|
1470
|
+
button:visited, button:link:hover, button:link:active, button:link:checked,
|
1471
|
+
button:visited:hover,
|
1472
|
+
button:visited:active,
|
1473
|
+
button:visited:checked, modelbutton.flat, popover.background checkbutton,
|
1474
|
+
popover.background radiobutton,
|
1475
|
+
.menuitem.button.flat, modelbutton.flat:backdrop, popover.background checkbutton:backdrop,
|
1476
|
+
popover.background radiobutton:backdrop, modelbutton.flat:backdrop:hover, popover.background checkbutton:backdrop:hover,
|
1477
|
+
popover.background radiobutton:backdrop:hover,
|
1478
|
+
.menuitem.button.flat:backdrop,
|
1479
|
+
.menuitem.button.flat:backdrop:hover, scrollbar button:backdrop, button.sidebar-button {
|
1480
|
+
border-color: transparent;
|
1481
|
+
background-color: transparent;
|
1482
|
+
background-image: none;
|
1483
|
+
box-shadow: none;
|
1484
|
+
text-shadow: none;
|
1485
|
+
-gtk-icon-shadow: none; }
|
1486
|
+
|
1487
|
+
/****************
|
1488
|
+
* Text Entries *
|
1489
|
+
****************/
|
1490
|
+
spinbutton:not(.vertical),
|
1491
|
+
entry {
|
1492
|
+
min-height: 30px;
|
1493
|
+
padding-left: 8px;
|
1494
|
+
padding-right: 8px;
|
1495
|
+
border: 1px solid;
|
1496
|
+
border-radius: 3px;
|
1497
|
+
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
1498
|
+
color: #d3d8e5;
|
1499
|
+
border-color: #535760;
|
1500
|
+
background-color: #3d424c;
|
1501
|
+
box-shadow: none; }
|
1502
|
+
spinbutton:not(.vertical) image.left,
|
1503
|
+
entry image.left {
|
1504
|
+
padding-left: 0;
|
1505
|
+
padding-right: 6px; }
|
1506
|
+
spinbutton:not(.vertical) image.right,
|
1507
|
+
entry image.right {
|
1508
|
+
padding-left: 6px;
|
1509
|
+
padding-right: 0; }
|
1510
|
+
spinbutton.flat:focus:not(.vertical), spinbutton.flat:not(.vertical),
|
1511
|
+
entry.flat:focus,
|
1512
|
+
entry.flat {
|
1513
|
+
min-height: 0;
|
1514
|
+
padding: 2px;
|
1515
|
+
color: #d3d8e5;
|
1516
|
+
border-color: #535760;
|
1517
|
+
background-color: #3d424c;
|
1518
|
+
box-shadow: none; }
|
1519
|
+
spinbutton:focus:not(.vertical),
|
1520
|
+
entry:focus {
|
1521
|
+
border-color: #5191e0; }
|
1522
|
+
spinbutton:disabled:not(.vertical),
|
1523
|
+
entry:disabled {
|
1524
|
+
color: rgba(186, 194, 214, 0.35);
|
1525
|
+
border-color: rgba(75, 79, 87, 0.35);
|
1526
|
+
background-color: rgba(55, 60, 69, 0.35); }
|
1527
|
+
spinbutton:backdrop:not(.vertical),
|
1528
|
+
entry:backdrop {
|
1529
|
+
color: #d3d8e5;
|
1530
|
+
border-color: #535760;
|
1531
|
+
background-color: #3d424c; }
|
1532
|
+
spinbutton:backdrop:disabled:not(.vertical),
|
1533
|
+
entry:backdrop:disabled {
|
1534
|
+
color: rgba(186, 194, 214, 0.35);
|
1535
|
+
border-color: rgba(75, 79, 87, 0.35);
|
1536
|
+
background-color: rgba(55, 60, 69, 0.35); }
|
1537
|
+
spinbutton.error:not(.vertical),
|
1538
|
+
entry.error {
|
1539
|
+
color: #da4453;
|
1540
|
+
border-color: #da4453;
|
1541
|
+
background-color: rgba(218, 68, 83, 0.5); }
|
1542
|
+
spinbutton.error:focus:not(.vertical),
|
1543
|
+
entry.error:focus {
|
1544
|
+
border-color: #da4453;
|
1545
|
+
background-color: rgba(218, 68, 83, 0.5); }
|
1546
|
+
spinbutton.error:selected:not(.vertical), spinbutton.error:selected:focus:not(.vertical),
|
1547
|
+
entry.error:selected,
|
1548
|
+
entry.error:selected:focus {
|
1549
|
+
background-color: #da4453; }
|
1550
|
+
spinbutton.error:backdrop:not(.vertical),
|
1551
|
+
entry.error:backdrop {
|
1552
|
+
color: #da4453;
|
1553
|
+
border-color: #da4453;
|
1554
|
+
background-color: rgba(218, 68, 83, 0.5); }
|
1555
|
+
spinbutton.warning:not(.vertical),
|
1556
|
+
entry.warning {
|
1557
|
+
color: #f67400;
|
1558
|
+
border-color: #f67400;
|
1559
|
+
background-color: rgba(246, 116, 0, 0.5); }
|
1560
|
+
spinbutton.warning:focus:not(.vertical),
|
1561
|
+
entry.warning:focus {
|
1562
|
+
border-color: #f67400;
|
1563
|
+
background-color: rgba(246, 116, 0, 0.5); }
|
1564
|
+
spinbutton.warning:selected:not(.vertical), spinbutton.warning:selected:focus:not(.vertical),
|
1565
|
+
entry.warning:selected,
|
1566
|
+
entry.warning:selected:focus {
|
1567
|
+
background-color: #f67400; }
|
1568
|
+
spinbutton.warning:backdrop:not(.vertical),
|
1569
|
+
entry.warning:backdrop {
|
1570
|
+
color: #f67400;
|
1571
|
+
border-color: #f67400;
|
1572
|
+
background-color: rgba(246, 116, 0, 0.5); }
|
1573
|
+
spinbutton:not(.vertical) image,
|
1574
|
+
entry image {
|
1575
|
+
color: #d3d8e5; }
|
1576
|
+
spinbutton:not(.vertical) image:hover,
|
1577
|
+
entry image:hover {
|
1578
|
+
color: #5191e0; }
|
1579
|
+
spinbutton:not(.vertical) image:active,
|
1580
|
+
entry image:active {
|
1581
|
+
color: #5191e0; }
|
1582
|
+
spinbutton:not(.vertical) image:backdrop,
|
1583
|
+
entry image:backdrop {
|
1584
|
+
color: #d3d8e5; }
|
1585
|
+
|
1586
|
+
spinbutton:not(.vertical) progress,
|
1587
|
+
entry progress {
|
1588
|
+
margin: 1px;
|
1589
|
+
border-radius: 0;
|
1590
|
+
border-width: 0 0 2px;
|
1591
|
+
border-color: #5191e0;
|
1592
|
+
border-style: solid;
|
1593
|
+
background-image: none;
|
1594
|
+
background-color: transparent;
|
1595
|
+
box-shadow: none; }
|
1596
|
+
spinbutton:not(.vertical) progress:backdrop,
|
1597
|
+
entry progress:backdrop {
|
1598
|
+
background-color: transparent;
|
1599
|
+
border-color: rgba(81, 145, 224, 0.5); }
|
1600
|
+
|
1601
|
+
treeview acceleditor > label {
|
1602
|
+
background-color: #5191e0; }
|
1603
|
+
|
1604
|
+
treeview entry.flat, treeview entry {
|
1605
|
+
border-radius: 0;
|
1606
|
+
background-image: none;
|
1607
|
+
background-color: #3d424c; }
|
1608
|
+
treeview entry.flat:focus, treeview entry:focus {
|
1609
|
+
border-color: #5191e0; }
|
1610
|
+
|
1611
|
+
/*********************
|
1612
|
+
* App Notifications *
|
1613
|
+
*********************/
|
1614
|
+
.app-notification,
|
1615
|
+
.app-notification.frame {
|
1616
|
+
padding: 10px;
|
1617
|
+
border-top-width: 0px;
|
1618
|
+
border-radius: 0px 0px 3px 3px; }
|
1619
|
+
.app-notification:backdrop,
|
1620
|
+
.app-notification.frame:backdrop {
|
1621
|
+
background-image: none; }
|
1622
|
+
.app-notification button,
|
1623
|
+
.app-notification.frame button {
|
1624
|
+
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
|
1625
|
+
text-shadow: none;
|
1626
|
+
-gtk-icon-shadow: none;
|
1627
|
+
color: #d3d8e5;
|
1628
|
+
border-color: #535760;
|
1629
|
+
background-image: linear-gradient(to bottom, #414855, #3e4552); }
|
1630
|
+
.app-notification button.flat,
|
1631
|
+
.app-notification.frame button.flat {
|
1632
|
+
-gtk-icon-shadow: none;
|
1633
|
+
text-shadow: none; }
|
1634
|
+
.app-notification button.flat:hover,
|
1635
|
+
.app-notification.frame button.flat:hover {
|
1636
|
+
color: #5191e0; }
|
1637
|
+
.app-notification button.flat:active,
|
1638
|
+
.app-notification.frame button.flat:active {
|
1639
|
+
color: #5191e0; }
|
1640
|
+
.app-notification button:hover,
|
1641
|
+
.app-notification.frame button:hover {
|
1642
|
+
color: #d3d8e5;
|
1643
|
+
border-color: #5191e0; }
|
1644
|
+
.app-notification button:active, .app-notification button:checked, .app-notification button:backdrop:active, .app-notification button:backdrop:checked,
|
1645
|
+
.app-notification.frame button:active,
|
1646
|
+
.app-notification.frame button:checked,
|
1647
|
+
.app-notification.frame button:backdrop:active,
|
1648
|
+
.app-notification.frame button:backdrop:checked {
|
1649
|
+
color: #eff1f5;
|
1650
|
+
border-color: #5191e0;
|
1651
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc); }
|
1652
|
+
.app-notification button:disabled, .app-notification button:backdrop:disabled,
|
1653
|
+
.app-notification.frame button:disabled,
|
1654
|
+
.app-notification.frame button:backdrop:disabled {
|
1655
|
+
color: rgba(186, 194, 214, 0.35);
|
1656
|
+
border-color: rgba(75, 79, 87, 0.35);
|
1657
|
+
background-image: linear-gradient(to bottom, rgba(59, 65, 77, 0.35), rgba(56, 63, 74, 0.35)); }
|
1658
|
+
.app-notification button:disabled > .label, .app-notification button:backdrop:disabled > .label,
|
1659
|
+
.app-notification.frame button:disabled > .label,
|
1660
|
+
.app-notification.frame button:backdrop:disabled > .label {
|
1661
|
+
color: inherit; }
|
1662
|
+
.app-notification button:backdrop,
|
1663
|
+
.app-notification.frame button:backdrop {
|
1664
|
+
color: #d3d8e5;
|
1665
|
+
border-color: #535760;
|
1666
|
+
background-image: linear-gradient(to bottom, #414855, #3e4552); }
|
1667
|
+
.app-notification border,
|
1668
|
+
.app-notification.frame border {
|
1669
|
+
border: none; }
|
1670
|
+
|
1671
|
+
/************
|
1672
|
+
* Calendar *
|
1673
|
+
***********/
|
1674
|
+
calendar {
|
1675
|
+
color: #d3d8e5;
|
1676
|
+
border: 1px solid #535760;
|
1677
|
+
background-color: #3d424c; }
|
1678
|
+
calendar:selected {
|
1679
|
+
background-color: #535760; }
|
1680
|
+
calendar:disabled {
|
1681
|
+
color: rgba(186, 194, 214, 0.35); }
|
1682
|
+
calendar.header {
|
1683
|
+
border: 1px solid #535760;
|
1684
|
+
border-radius: 0;
|
1685
|
+
color: #d3d8e5; }
|
1686
|
+
calendar.header:backdrop {
|
1687
|
+
color: #d3d8e5;
|
1688
|
+
border-color: #535760; }
|
1689
|
+
calendar.header:disabled {
|
1690
|
+
color: rgba(186, 194, 214, 0.35); }
|
1691
|
+
calendar.button {
|
1692
|
+
color: #d3d8e5; }
|
1693
|
+
calendar.button:hover {
|
1694
|
+
color: #5191e0; }
|
1695
|
+
calendar.button:active {
|
1696
|
+
color: #5191e0; }
|
1697
|
+
calendar.button:backdrop {
|
1698
|
+
color: #d3d8e5; }
|
1699
|
+
calendar:indeterminate, calendar.highlight {
|
1700
|
+
color: rgba(211, 216, 229, 0.5); }
|
1701
|
+
calendar:indeterminate:backdrop, calendar.highlight:backdrop {
|
1702
|
+
color: rgba(211, 216, 229, 0.5); }
|
1703
|
+
calendar:backdrop {
|
1704
|
+
color: #d3d8e5;
|
1705
|
+
border-color: #535760;
|
1706
|
+
background-color: #3d424c; }
|
1707
|
+
|
1708
|
+
/*************************
|
1709
|
+
* Check and Radio items *
|
1710
|
+
*************************/
|
1711
|
+
.view.content-view.check:not(list) {
|
1712
|
+
-gtk-icon-shadow: none;
|
1713
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-unchecked.png"), url("../assets/check-selectionmode-unchecked@2.png"));
|
1714
|
+
background-color: transparent; }
|
1715
|
+
|
1716
|
+
.view.content-view.check:hover:not(list) {
|
1717
|
+
-gtk-icon-shadow: none;
|
1718
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-unchecked-hover.png"), url("../assets/check-selectionmode-unchecked-hover@2.png"));
|
1719
|
+
background-color: transparent; }
|
1720
|
+
|
1721
|
+
.view.content-view.check:active:not(list) {
|
1722
|
+
-gtk-icon-shadow: none;
|
1723
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-unchecked-active.png"), url("../assets/check-selectionmode-unchecked-active@2.png"));
|
1724
|
+
background-color: transparent; }
|
1725
|
+
|
1726
|
+
.view.content-view.check:backdrop:not(list) {
|
1727
|
+
-gtk-icon-shadow: none;
|
1728
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-unchecked-backdrop.png"), url("../assets/check-selectionmode-unchecked-backdrop@2.png"));
|
1729
|
+
background-color: transparent; }
|
1730
|
+
|
1731
|
+
.view.content-view.check:checked:not(list) {
|
1732
|
+
-gtk-icon-shadow: none;
|
1733
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-checked-active.png"), url("../assets/check-selectionmode-checked-active@2.png"));
|
1734
|
+
background-color: transparent; }
|
1735
|
+
|
1736
|
+
.view.content-view.check:checked:hover:not(list) {
|
1737
|
+
-gtk-icon-shadow: none;
|
1738
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-checked-hover.png"), url("../assets/check-selectionmode-checked-hover@2.png"));
|
1739
|
+
background-color: transparent; }
|
1740
|
+
|
1741
|
+
.view.content-view.check:checked:active:not(list) {
|
1742
|
+
-gtk-icon-shadow: none;
|
1743
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-checked-active.png"), url("../assets/check-selectionmode-checked-active@2.png"));
|
1744
|
+
background-color: transparent; }
|
1745
|
+
|
1746
|
+
.view.content-view.check:backdrop:checked:not(list) {
|
1747
|
+
-gtk-icon-shadow: none;
|
1748
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-selectionmode-checked-backdrop.png"), url("../assets/check-selectionmode-checked-backdrop@2.png"));
|
1749
|
+
background-color: transparent; }
|
1750
|
+
|
1751
|
+
checkbutton.text-button, radiobutton.text-button {
|
1752
|
+
padding: 2px 0;
|
1753
|
+
outline-offset: 0; }
|
1754
|
+
checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child {
|
1755
|
+
margin-left: 4px; }
|
1756
|
+
checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child {
|
1757
|
+
margin-right: 4px; }
|
1758
|
+
|
1759
|
+
check {
|
1760
|
+
margin: 0 4px;
|
1761
|
+
min-height: 18px;
|
1762
|
+
min-width: 18px;
|
1763
|
+
animation: none;
|
1764
|
+
background-color: transparent;
|
1765
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked.png"), url("../assets/check-unchecked@2.png")); }
|
1766
|
+
check:only-child {
|
1767
|
+
margin: 0; }
|
1768
|
+
check:hover {
|
1769
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked-hover.png"), url("../assets/check-unchecked-hover@2.png")); }
|
1770
|
+
check:checked {
|
1771
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
1772
|
+
check:checked:hover {
|
1773
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-hover.png"), url("../assets/check-checked-hover@2.png")); }
|
1774
|
+
check:indeterminate {
|
1775
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-active.png"), url("../assets/check-mixed-active@2.png")); }
|
1776
|
+
check:indeterminate:hover {
|
1777
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-hover.png"), url("../assets/check-mixed-hover@2.png")); }
|
1778
|
+
check:active {
|
1779
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked-active.png"), url("../assets/check-unchecked-active@2.png")); }
|
1780
|
+
check:checked {
|
1781
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
1782
|
+
check:checked:active {
|
1783
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
1784
|
+
check:indeterminate {
|
1785
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-active.png"), url("../assets/check-mixed-active@2.png")); }
|
1786
|
+
check:indeterminate:active {
|
1787
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-active.png"), url("../assets/check-mixed-active@2.png")); }
|
1788
|
+
check:disabled {
|
1789
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked-insensitive.png"), url("../assets/check-unchecked-insensitive@2.png")); }
|
1790
|
+
check:checked {
|
1791
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
1792
|
+
check:checked:disabled {
|
1793
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-insensitive.png"), url("../assets/check-checked-insensitive@2.png")); }
|
1794
|
+
check:indeterminate {
|
1795
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-active.png"), url("../assets/check-mixed-active@2.png")); }
|
1796
|
+
check:indeterminate:disabled {
|
1797
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-insensitive.png"), url("../assets/check-mixed-insensitive@2.png")); }
|
1798
|
+
check:backdrop {
|
1799
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked-backdrop.png"), url("../assets/check-unchecked-backdrop@2.png")); }
|
1800
|
+
check:checked {
|
1801
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
1802
|
+
check:checked:backdrop {
|
1803
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-backdrop.png"), url("../assets/check-checked-backdrop@2.png")); }
|
1804
|
+
check:indeterminate {
|
1805
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-active.png"), url("../assets/check-mixed-active@2.png")); }
|
1806
|
+
check:indeterminate:backdrop {
|
1807
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-backdrop.png"), url("../assets/check-mixed-backdrop@2.png")); }
|
1808
|
+
check:backdrop:disabled {
|
1809
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked-backdrop-insensitive.png"), url("../assets/check-unchecked-backdrop-insensitive@2.png")); }
|
1810
|
+
check:checked {
|
1811
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
1812
|
+
check:checked:backdrop:disabled {
|
1813
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-backdrop-insensitive.png"), url("../assets/check-checked-backdrop-insensitive@2.png")); }
|
1814
|
+
check:indeterminate {
|
1815
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-active.png"), url("../assets/check-mixed-active@2.png")); }
|
1816
|
+
check:indeterminate:backdrop:disabled {
|
1817
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-backdrop-insensitive.png"), url("../assets/check-mixed-backdrop-insensitive@2.png")); }
|
1818
|
+
menu menuitem check {
|
1819
|
+
margin: 0;
|
1820
|
+
min-height: 18px;
|
1821
|
+
min-width: 18px;
|
1822
|
+
background-color: transparent;
|
1823
|
+
box-shadow: none;
|
1824
|
+
-gtk-icon-shadow: none;
|
1825
|
+
animation: none; }
|
1826
|
+
menu menuitem check:hover {
|
1827
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked.png"), url("../assets/check-unchecked@2.png")); }
|
1828
|
+
menu menuitem check:checked:hover {
|
1829
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
1830
|
+
menu menuitem check:indeterminate:hover {
|
1831
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed-active.png"), url("../assets/check-mixed-active@2.png")); }
|
1832
|
+
|
1833
|
+
radio {
|
1834
|
+
margin: 0 4px;
|
1835
|
+
min-height: 18px;
|
1836
|
+
min-width: 18px;
|
1837
|
+
animation: none;
|
1838
|
+
background-color: transparent;
|
1839
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked.png"), url("../assets/radio-unchecked@2.png")); }
|
1840
|
+
radio:only-child {
|
1841
|
+
margin: 0; }
|
1842
|
+
radio:hover {
|
1843
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-hover.png"), url("../assets/radio-unchecked-hover@2.png")); }
|
1844
|
+
radio:checked {
|
1845
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
1846
|
+
radio:checked:hover {
|
1847
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-hover.png"), url("../assets/radio-checked-hover@2.png")); }
|
1848
|
+
radio:indeterminate {
|
1849
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); }
|
1850
|
+
radio:indeterminate:hover {
|
1851
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-hover.png"), url("../assets/radio-mixed-hover@2.png")); }
|
1852
|
+
radio:active {
|
1853
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-active.png"), url("../assets/radio-unchecked-active@2.png")); }
|
1854
|
+
radio:checked {
|
1855
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
1856
|
+
radio:checked:active {
|
1857
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
1858
|
+
radio:indeterminate {
|
1859
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); }
|
1860
|
+
radio:indeterminate:active {
|
1861
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); }
|
1862
|
+
radio:disabled {
|
1863
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-insensitive.png"), url("../assets/radio-unchecked-insensitive@2.png")); }
|
1864
|
+
radio:checked {
|
1865
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
1866
|
+
radio:checked:disabled {
|
1867
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-insensitive.png"), url("../assets/radio-checked-insensitive@2.png")); }
|
1868
|
+
radio:indeterminate {
|
1869
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); }
|
1870
|
+
radio:indeterminate:disabled {
|
1871
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-insensitive.png"), url("../assets/radio-mixed-insensitive@2.png")); }
|
1872
|
+
radio:backdrop {
|
1873
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop.png"), url("../assets/radio-unchecked-backdrop@2.png")); }
|
1874
|
+
radio:checked {
|
1875
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
1876
|
+
radio:checked:backdrop {
|
1877
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop.png"), url("../assets/radio-checked-backdrop@2.png")); }
|
1878
|
+
radio:indeterminate {
|
1879
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); }
|
1880
|
+
radio:indeterminate:backdrop {
|
1881
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop.png"), url("../assets/radio-mixed-backdrop@2.png")); }
|
1882
|
+
radio:backdrop:disabled {
|
1883
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked-backdrop-insensitive.png"), url("../assets/radio-unchecked-backdrop-insensitive@2.png")); }
|
1884
|
+
radio:checked {
|
1885
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
1886
|
+
radio:checked:backdrop:disabled {
|
1887
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-backdrop-insensitive.png"), url("../assets/radio-checked-backdrop-insensitive@2.png")); }
|
1888
|
+
radio:indeterminate {
|
1889
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); }
|
1890
|
+
radio:indeterminate:backdrop:disabled {
|
1891
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-backdrop-insensitive.png"), url("../assets/radio-mixed-backdrop-insensitive@2.png")); }
|
1892
|
+
menu menuitem radio {
|
1893
|
+
margin: 0;
|
1894
|
+
min-height: 18px;
|
1895
|
+
min-width: 18px;
|
1896
|
+
background-color: transparent;
|
1897
|
+
box-shadow: none;
|
1898
|
+
-gtk-icon-shadow: none;
|
1899
|
+
animation: none; }
|
1900
|
+
menu menuitem radio:hover {
|
1901
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked.png"), url("../assets/radio-unchecked@2.png")); }
|
1902
|
+
menu menuitem radio:checked:hover {
|
1903
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
1904
|
+
menu menuitem radio:indeterminate:hover {
|
1905
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed-active.png"), url("../assets/radio-mixed-active@2.png")); }
|
1906
|
+
|
1907
|
+
/*****************
|
1908
|
+
* Color Chooser *
|
1909
|
+
*****************/
|
1910
|
+
:selected colorswatch {
|
1911
|
+
box-shadow: none; }
|
1912
|
+
:selected colorswatch.overlay, :selected colorswatch.overlay:hover {
|
1913
|
+
border-color: #eff1f5; }
|
1914
|
+
|
1915
|
+
colorswatch:selected {
|
1916
|
+
box-shadow: none; }
|
1917
|
+
|
1918
|
+
colorswatch.top, colorswatch.bottom, colorswatch.left, colorswatch:first-child:not(.overlay):not(.top), colorswatch.right, colorswatch:last-child:not(.overlay):not(.bottom), colorswatch:only-child:not(.overlay),
|
1919
|
+
colorswatch.top > .overlay,
|
1920
|
+
colorswatch.bottom > .overlay,
|
1921
|
+
colorswatch:first-child:not(.top) > .overlay,
|
1922
|
+
colorswatch:last-child:not(.bottom) > .overlay,
|
1923
|
+
colorswatch:only-child > .overlay {
|
1924
|
+
border-radius: 3px; }
|
1925
|
+
|
1926
|
+
colorswatch:hover, colorswatch:hover:selected {
|
1927
|
+
background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 50%);
|
1928
|
+
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); }
|
1929
|
+
colorswatch:hover.color-dark, colorswatch:hover:selected.color-dark {
|
1930
|
+
background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 50%); }
|
1931
|
+
|
1932
|
+
colorswatch:backdrop,
|
1933
|
+
colorswatch:backdrop:selected colorswatch.color-dark:backdrop, colorswatch.color-dark:backdrop:selected {
|
1934
|
+
background-image: none;
|
1935
|
+
box-shadow: none; }
|
1936
|
+
|
1937
|
+
GtkColorEditor colorswatch {
|
1938
|
+
border-radius: 3px; }
|
1939
|
+
GtkColorEditor colorswatch:hover {
|
1940
|
+
background-image: none;
|
1941
|
+
box-shadow: none; }
|
1942
|
+
GtkColorEditor colorswatch:backdrop {
|
1943
|
+
box-shadow: none; }
|
1944
|
+
|
1945
|
+
colorswatch.color-dark {
|
1946
|
+
color: white;
|
1947
|
+
outline-color: rgba(0, 0, 0, 0.3); }
|
1948
|
+
colorswatch.color-dark:backdrop {
|
1949
|
+
color: rgba(255, 255, 255, 0.3); }
|
1950
|
+
|
1951
|
+
colorswatch.color-light {
|
1952
|
+
color: black;
|
1953
|
+
outline-color: rgba(255, 255, 255, 0.5); }
|
1954
|
+
colorswatch.color-light:backdrop {
|
1955
|
+
color: rgba(0, 0, 0, 0.3); }
|
1956
|
+
|
1957
|
+
colorswatch overlay,
|
1958
|
+
colorswatch overlay:selected {
|
1959
|
+
border: 1px solid #535760; }
|
1960
|
+
colorswatch overlay:hover,
|
1961
|
+
colorswatch overlay:selected:hover {
|
1962
|
+
border-color: #5191e0; }
|
1963
|
+
|
1964
|
+
colorswatch#add-color-button {
|
1965
|
+
border-style: solid;
|
1966
|
+
border-width: 1px;
|
1967
|
+
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
|
1968
|
+
text-shadow: none;
|
1969
|
+
-gtk-icon-shadow: none;
|
1970
|
+
color: #d3d8e5;
|
1971
|
+
border-color: #535760;
|
1972
|
+
background-image: linear-gradient(to bottom, #414855, #3e4552); }
|
1973
|
+
colorswatch#add-color-button:hover {
|
1974
|
+
color: #d3d8e5;
|
1975
|
+
border-color: #5191e0; }
|
1976
|
+
colorswatch#add-color-button:backdrop {
|
1977
|
+
color: #d3d8e5;
|
1978
|
+
border-color: #535760;
|
1979
|
+
background-image: linear-gradient(to bottom, #414855, #3e4552); }
|
1980
|
+
colorswatch#add-color-button overlay {
|
1981
|
+
border-color: rgba(255, 255, 255, 0);
|
1982
|
+
background-color: transparent;
|
1983
|
+
background-image: none;
|
1984
|
+
box-shadow: none;
|
1985
|
+
color: #d3d8e5;
|
1986
|
+
text-shadow: none;
|
1987
|
+
-gtk-icon-shadow: none; }
|
1988
|
+
|
1989
|
+
GtkColorButton.button {
|
1990
|
+
padding: 5px; }
|
1991
|
+
GtkColorButton.button GtkColorSwatch:first-child:last-child {
|
1992
|
+
border-radius: 0;
|
1993
|
+
box-shadow: none; }
|
1994
|
+
GtkColorButton.button GtkColorSwatch:first-child:last-child:disabled, GtkColorButton.button GtkColorSwatch:first-child:last-child:backdrop {
|
1995
|
+
box-shadow: none; }
|
1996
|
+
|
1997
|
+
/***********
|
1998
|
+
* Dialogs *
|
1999
|
+
***********/
|
2000
|
+
messagedialog.background {
|
2001
|
+
background-color: #282c34; }
|
2002
|
+
|
2003
|
+
messagedialog:backdrop {
|
2004
|
+
background-color: #282c34; }
|
2005
|
+
|
2006
|
+
messagedialog .titlebar {
|
2007
|
+
min-height: 32px;
|
2008
|
+
background-color: transparent;
|
2009
|
+
background-image: linear-gradient(to bottom, #30353e, #282c34);
|
2010
|
+
box-shadow: none; }
|
2011
|
+
|
2012
|
+
messagedialog .dialog-action-area {
|
2013
|
+
padding: 8px; }
|
2014
|
+
|
2015
|
+
messagedialog button {
|
2016
|
+
margin: 2px; }
|
2017
|
+
|
2018
|
+
filechooser .search-bar {
|
2019
|
+
background-color: #282c34;
|
2020
|
+
border-color: #282c34;
|
2021
|
+
box-shadow: none; }
|
2022
|
+
filechooser .search-bar:backdrop {
|
2023
|
+
background-color: #282c34;
|
2024
|
+
border-color: #282c34;
|
2025
|
+
color: #d3d8e5; }
|
2026
|
+
|
2027
|
+
filechooser .dialog-action-box {
|
2028
|
+
border-top: 1px solid #535760; }
|
2029
|
+
filechooser .dialog-action-box:backdrop {
|
2030
|
+
border-top-color: #535760; }
|
2031
|
+
|
2032
|
+
filechooser #pathbarbox {
|
2033
|
+
background-color: #282c34;
|
2034
|
+
border-bottom: 1px solid #535760; }
|
2035
|
+
|
2036
|
+
/***************
|
2037
|
+
* Header bars *
|
2038
|
+
***************/
|
2039
|
+
|
2040
|
+
headerbar {
|
2041
|
+
transition: none;
|
2042
|
+
padding: 0px 6px;
|
2043
|
+
border-width: 0px 0px 1px 0px;
|
2044
|
+
border-radius: 3px 3px 0px 0px;
|
2045
|
+
border-style: solid;
|
2046
|
+
border-color: #535760;
|
2047
|
+
color: #d3d8e5;
|
2048
|
+
background-image: none;
|
2049
|
+
background-color: #282c34; }
|
2050
|
+
|
2051
|
+
headerbar:backdrop {
|
2052
|
+
border-color: transparent;
|
2053
|
+
background-image: none;
|
2054
|
+
background-color: #282c34;
|
2055
|
+
color: #696e77;
|
2056
|
+
box-shadow: none; }
|
2057
|
+
|
2058
|
+
headerbar label {
|
2059
|
+
font-weight: normal; }
|
2060
|
+
|
2061
|
+
headerbar label:backdrop {
|
2062
|
+
color: #696e77; }
|
2063
|
+
|
2064
|
+
headerbar .path-bar button {
|
2065
|
+
color: #d3d8e5;
|
2066
|
+
font-weight: normal; }
|
2067
|
+
|
2068
|
+
headerbar .path-bar button:backdrop {
|
2069
|
+
color: #696e77; }
|
2070
|
+
|
2071
|
+
headerbar button {
|
2072
|
+
transition: none;
|
2073
|
+
border-color: rgba(255, 255, 255, 0);
|
2074
|
+
background-color: transparent;
|
2075
|
+
background-image: none;
|
2076
|
+
box-shadow: none;
|
2077
|
+
color: #d3d8e5;
|
2078
|
+
text-shadow: none;
|
2079
|
+
-gtk-icon-shadow: none; }
|
2080
|
+
|
2081
|
+
headerbar button.flat {
|
2082
|
+
border-color: rgba(255, 255, 255, 0);
|
2083
|
+
background-color: transparent;
|
2084
|
+
background-image: none;
|
2085
|
+
box-shadow: none;
|
2086
|
+
color: #d3d8e5;
|
2087
|
+
text-shadow: none;
|
2088
|
+
-gtk-icon-shadow: none; }
|
2089
|
+
|
2090
|
+
headerbar button:hover {
|
2091
|
+
color: #d3d8e5;
|
2092
|
+
border-color: #5191e0; }
|
2093
|
+
|
2094
|
+
headerbar button:hover:backdrop {
|
2095
|
+
border-color: #282c34; }
|
2096
|
+
|
2097
|
+
headerbar button:active,
|
2098
|
+
headerbar button:checked {
|
2099
|
+
color: #eff1f5;
|
2100
|
+
border-color: #5191e0;
|
2101
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc); }
|
2102
|
+
|
2103
|
+
headerbar button:active:hover,
|
2104
|
+
headerbar button:checked:hover {
|
2105
|
+
color: #d3d8e5;
|
2106
|
+
border-color: #5191e0;
|
2107
|
+
background-image: linear-gradient(to bottom, #5996e1, #3982dc); }
|
2108
|
+
|
2109
|
+
headerbar button:active:backdrop,
|
2110
|
+
headerbar button:checked:backdrop {
|
2111
|
+
background-image: none;
|
2112
|
+
background-color: #282c34;
|
2113
|
+
border-color: #282c34;
|
2114
|
+
color: #696e77; }
|
2115
|
+
|
2116
|
+
headerbar button:backdrop {
|
2117
|
+
border-color: transparent;
|
2118
|
+
background-image: none;
|
2119
|
+
background-color: #282c34;
|
2120
|
+
color: #696e77; }
|
2121
|
+
|
2122
|
+
headerbar button.flat:backdrop,
|
2123
|
+
headerbar button.flat:backdrop:disabled,
|
2124
|
+
headerbar button:disabled:backdrop {
|
2125
|
+
background-image: none;
|
2126
|
+
background-color: #282c34;
|
2127
|
+
color: #696e77;
|
2128
|
+
border-color: transparent; }
|
2129
|
+
|
2130
|
+
headerbar button.flat:disabled {
|
2131
|
+
color: rgba(186, 194, 214, 0.35); }
|
2132
|
+
|
2133
|
+
headerbar button:disabled {
|
2134
|
+
background-color: transparent;
|
2135
|
+
background-image: none;
|
2136
|
+
border-color: transparent;
|
2137
|
+
color: rgba(186, 194, 214, 0.35); }
|
2138
|
+
|
2139
|
+
headerbar button:disabled:active,
|
2140
|
+
headerbar button:disabled:checked {
|
2141
|
+
color: rgba(212, 217, 228, 0.35);
|
2142
|
+
border-color: rgba(57, 130, 220, 0.35);
|
2143
|
+
background-image: linear-gradient(to bottom, rgba(65, 135, 221, 0.35), rgba(38, 117, 214, 0.35)); }
|
2144
|
+
|
2145
|
+
headerbar button:disabled:active > .label,
|
2146
|
+
headerbar button:disabled:checked > .label {
|
2147
|
+
color: inherit; }
|
2148
|
+
|
2149
|
+
headerbar .title {
|
2150
|
+
font-weight: normal;
|
2151
|
+
padding: 0px 12px; }
|
2152
|
+
|
2153
|
+
headerbar .title:backdrop {
|
2154
|
+
color: #696e77; }
|
2155
|
+
|
2156
|
+
headerbar .subtitle {
|
2157
|
+
font-size: smaller;
|
2158
|
+
padding: 0 12px; }
|
2159
|
+
|
2160
|
+
headerbar .subtitle:backdrop {
|
2161
|
+
color: #696e77; }
|
2162
|
+
|
2163
|
+
headerbar separator {
|
2164
|
+
border-width: 0px;
|
2165
|
+
background-color: transparent;
|
2166
|
+
background-image: none;
|
2167
|
+
border-color: transparent; }
|
2168
|
+
|
2169
|
+
headerbar.selection-mode .selection-menu {
|
2170
|
+
padding: 4px 6px; }
|
2171
|
+
|
2172
|
+
headerbar.selection-mode .selection-menu GtkArrow {
|
2173
|
+
-GtkArrow-arrow-scaling: 1; }
|
2174
|
+
|
2175
|
+
headerbar.selection-mode .selection-menu .arrow {
|
2176
|
+
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
2177
|
+
-gtk-icon-shadow: none; }
|
2178
|
+
.tiled
|
2179
|
+
headerbar, .maximized
|
2180
|
+
headerbar {
|
2181
|
+
border-radius: 0; }
|
2182
|
+
|
2183
|
+
headerbar entry,
|
2184
|
+
headerbar spinbutton,
|
2185
|
+
headerbar separator,
|
2186
|
+
headerbar button {
|
2187
|
+
margin-top: 3px;
|
2188
|
+
margin-bottom: 3px; }
|
2189
|
+
|
2190
|
+
|
2191
|
+
headerbar button.suggested-action,
|
2192
|
+
headerbar.selection-mode.suggested-action {
|
2193
|
+
background-image: none;
|
2194
|
+
background-color: #5191e0; }
|
2195
|
+
|
2196
|
+
headerbar button.suggested-action:hover,
|
2197
|
+
headerbar.selection-mode.suggested-action:hover {
|
2198
|
+
background-color: #5191e0;
|
2199
|
+
color: #d3d8e5; }
|
2200
|
+
|
2201
|
+
headerbar button.suggested-action:disabled,
|
2202
|
+
headerbar.selection-mode.suggested-action:disabled {
|
2203
|
+
background-color: transparent;
|
2204
|
+
background-image: none;
|
2205
|
+
color: rgba(186, 194, 214, 0.35); }
|
2206
|
+
|
2207
|
+
headerbar button.suggested-action:disabled:active,
|
2208
|
+
headerbar.selection-mode.suggested-action:disabled:active,
|
2209
|
+
headerbar button.suggested-action:disabled:checked,
|
2210
|
+
headerbar.selection-mode.suggested-action:disabled:checked {
|
2211
|
+
color: rgba(212, 217, 228, 0.35);
|
2212
|
+
border-color: rgba(57, 130, 220, 0.35);
|
2213
|
+
background-image: linear-gradient(to bottom, rgba(65, 135, 221, 0.35), rgba(38, 117, 214, 0.35)); }
|
2214
|
+
headerbar button.suggested-action:disabled:active > .label, headerbar.selection-mode.suggested-action:disabled:active > .label, headerbar button.suggested-action:disabled:checked > .label, headerbar.selection-mode.suggested-action:disabled:checked > .label {
|
2215
|
+
color: inherit; }
|
2216
|
+
|
2217
|
+
headerbar button.suggested-action:backdrop,
|
2218
|
+
headerbar.selection-mode.suggested-action:backdrop {
|
2219
|
+
background-color: #282c34;
|
2220
|
+
border-color: transparent;
|
2221
|
+
color: #696e77; }
|
2222
|
+
|
2223
|
+
headerbar button.suggested-action:backdrop:disabled,
|
2224
|
+
headerbar.selection-mode.suggested-action:backdrop:disabled {
|
2225
|
+
color: rgba(95, 100, 108, 0.35); }
|
2226
|
+
|
2227
|
+
/**************
|
2228
|
+
* GtkInfoBar *
|
2229
|
+
**************/
|
2230
|
+
infobar {
|
2231
|
+
border-style: none;
|
2232
|
+
border-bottom: 1px solid #535760;
|
2233
|
+
background-color: #282c34;
|
2234
|
+
background-image: none; }
|
2235
|
+
infobar:backdrop {
|
2236
|
+
border-bottom: 1px solid #535760; }
|
2237
|
+
|
2238
|
+
.info,
|
2239
|
+
headerbar.selection-mode,
|
2240
|
+
.question,
|
2241
|
+
.warning,
|
2242
|
+
.error {
|
2243
|
+
background-color: #282c34;
|
2244
|
+
background-image: none;
|
2245
|
+
color: #f67400;
|
2246
|
+
text-shadow: none; }
|
2247
|
+
.info:backdrop,
|
2248
|
+
headerbar.selection-mode:backdrop,
|
2249
|
+
.question:backdrop,
|
2250
|
+
.warning:backdrop,
|
2251
|
+
.error:backdrop {
|
2252
|
+
background-color: #282c34;
|
2253
|
+
color: #f67400; }
|
2254
|
+
.info button, headerbar.selection-mode button,
|
2255
|
+
.question button,
|
2256
|
+
.warning button,
|
2257
|
+
.error button {
|
2258
|
+
box-shadow: none;
|
2259
|
+
background-image: none;
|
2260
|
+
background-color: rgba(246, 116, 0, 0.5);
|
2261
|
+
border-color: rgba(246, 116, 0, 0.5);
|
2262
|
+
color: #d3d8e5; }
|
2263
|
+
.info button:hover, headerbar.selection-mode button:hover,
|
2264
|
+
.question button:hover,
|
2265
|
+
.warning button:hover,
|
2266
|
+
.error button:hover {
|
2267
|
+
background-color: rgba(246, 116, 0, 0.25);
|
2268
|
+
border-color: #f67400; }
|
2269
|
+
.info button:active, headerbar.selection-mode button:active, .info button:checked, headerbar.selection-mode button:checked,
|
2270
|
+
.question button:active,
|
2271
|
+
.question button:checked,
|
2272
|
+
.warning button:active,
|
2273
|
+
.warning button:checked,
|
2274
|
+
.error button:active,
|
2275
|
+
.error button:checked {
|
2276
|
+
background-image: linear-gradient(to bottom, #f87500, #ef7100);
|
2277
|
+
color: #282c34;
|
2278
|
+
border-color: #f67400; }
|
2279
|
+
.info button:disabled, headerbar.selection-mode button:disabled,
|
2280
|
+
.question button:disabled,
|
2281
|
+
.warning button:disabled,
|
2282
|
+
.error button:disabled {
|
2283
|
+
background-color: rgba(224, 105, 0, 0);
|
2284
|
+
border-color: rgba(224, 105, 0, 0);
|
2285
|
+
color: rgba(186, 194, 214, 0.35); }
|
2286
|
+
.info button:backdrop, headerbar.selection-mode button:backdrop,
|
2287
|
+
.question button:backdrop,
|
2288
|
+
.warning button:backdrop,
|
2289
|
+
.error button:backdrop {
|
2290
|
+
background-color: rgba(246, 116, 0, 0.5);
|
2291
|
+
border-color: rgba(246, 116, 0, 0.5);
|
2292
|
+
color: #d3d8e5; }
|
2293
|
+
.info button:backdrop:active, headerbar.selection-mode button:backdrop:active, .info button:backdrop:checked, headerbar.selection-mode button:backdrop:checked,
|
2294
|
+
.question button:backdrop:active,
|
2295
|
+
.question button:backdrop:checked,
|
2296
|
+
.warning button:backdrop:active,
|
2297
|
+
.warning button:backdrop:checked,
|
2298
|
+
.error button:backdrop:active,
|
2299
|
+
.error button:backdrop:checked {
|
2300
|
+
background-image: linear-gradient(to bottom, #f87500, #ef7100);
|
2301
|
+
color: #282c34;
|
2302
|
+
border-color: #f67400; }
|
2303
|
+
.info button:backdrop:disabled, headerbar.selection-mode button:backdrop:disabled,
|
2304
|
+
.question button:backdrop:disabled,
|
2305
|
+
.warning button:backdrop:disabled,
|
2306
|
+
.error button:backdrop:disabled {
|
2307
|
+
background-color: rgba(224, 105, 0, 0);
|
2308
|
+
border-color: rgba(224, 105, 0, 0);
|
2309
|
+
color: rgba(186, 194, 214, 0.35); }
|
2310
|
+
.info button:backdrop:disabled:active, headerbar.selection-mode button:backdrop:disabled:active, .info button:backdrop:disabled:checked, headerbar.selection-mode button:backdrop:disabled:checked,
|
2311
|
+
.question button:backdrop:disabled:active,
|
2312
|
+
.question button:backdrop:disabled:checked,
|
2313
|
+
.warning button:backdrop:disabled:active,
|
2314
|
+
.warning button:backdrop:disabled:checked,
|
2315
|
+
.error button:backdrop:disabled:active,
|
2316
|
+
.error button:backdrop:disabled:checked {
|
2317
|
+
background-image: linear-gradient(to bottom, rgba(226, 107, 0, 0.35), rgba(217, 102, 0, 0.35));
|
2318
|
+
color: #24282f;
|
2319
|
+
border-color: rgba(224, 105, 0, 0.35); }
|
2320
|
+
|
2321
|
+
/*********
|
2322
|
+
* Links *
|
2323
|
+
*********/
|
2324
|
+
button:link > label,
|
2325
|
+
button:visited > label,
|
2326
|
+
*:link,
|
2327
|
+
button:link,
|
2328
|
+
button:visited {
|
2329
|
+
color: #4d8edf; }
|
2330
|
+
button:link > label:visited,
|
2331
|
+
button:visited > label:visited,
|
2332
|
+
*:link:visited,
|
2333
|
+
button:visited {
|
2334
|
+
color: #70b0ff; }
|
2335
|
+
*:selected button:link > label:visited,
|
2336
|
+
*:selected button:visited > label:visited, *:selected *:link:visited, *:selected button:visited:link,
|
2337
|
+
*:selected button:visited {
|
2338
|
+
color: #b0cbed; }
|
2339
|
+
button:link > label:hover,
|
2340
|
+
button:visited > label:hover,
|
2341
|
+
*:link:hover,
|
2342
|
+
button:hover:link,
|
2343
|
+
button:hover:visited {
|
2344
|
+
color: #78a9e7; }
|
2345
|
+
*:selected button:link > label:hover,
|
2346
|
+
*:selected button:visited > label:hover, *:selected *:link:hover, *:selected button:hover:link,
|
2347
|
+
*:selected button:hover:visited {
|
2348
|
+
color: #dfe7f3; }
|
2349
|
+
button:link > label:active,
|
2350
|
+
button:visited > label:active,
|
2351
|
+
*:link:active,
|
2352
|
+
button:active:link,
|
2353
|
+
button:active:visited {
|
2354
|
+
color: #4d8edf; }
|
2355
|
+
*:selected button:link > label:active,
|
2356
|
+
*:selected button:visited > label:active, *:selected *:link:active, *:selected button:active:link,
|
2357
|
+
*:selected button:active:visited {
|
2358
|
+
color: #cfdef1; }
|
2359
|
+
button:link > label:backdrop,
|
2360
|
+
button:visited > label:backdrop, button:link > label:backdrop:hover,
|
2361
|
+
button:visited > label:backdrop:hover, button:link > label:backdrop:hover:selected,
|
2362
|
+
button:visited > label:backdrop:hover:selected,
|
2363
|
+
*:link:backdrop,
|
2364
|
+
button:backdrop:link,
|
2365
|
+
button:backdrop:visited,
|
2366
|
+
*:link:backdrop:hover,
|
2367
|
+
button:backdrop:hover:link,
|
2368
|
+
button:backdrop:hover:visited,
|
2369
|
+
*:link:backdrop:hover:selected,
|
2370
|
+
headerbar.selection-mode .subtitle:backdrop:hover:link,
|
2371
|
+
button:backdrop:hover:selected:link,
|
2372
|
+
button:backdrop:hover:selected:visited {
|
2373
|
+
color: rgba(81, 145, 224, 0.5); }
|
2374
|
+
button:link > label:selected,
|
2375
|
+
button:visited > label:selected, *:selected button:link > label,
|
2376
|
+
*:selected button:visited > label,
|
2377
|
+
*:link:selected,
|
2378
|
+
headerbar.selection-mode .subtitle:link,
|
2379
|
+
button:selected:link,
|
2380
|
+
button:selected:visited, *:selected *:link, *:selected button:link,
|
2381
|
+
*:selected button:visited {
|
2382
|
+
color: #cfdef1; }
|
2383
|
+
|
2384
|
+
button:link,
|
2385
|
+
button:visited {
|
2386
|
+
text-shadow: none; }
|
2387
|
+
button:link:hover, button:link:active, button:link:checked,
|
2388
|
+
button:visited:hover,
|
2389
|
+
button:visited:active,
|
2390
|
+
button:visited:checked {
|
2391
|
+
text-shadow: none; }
|
2392
|
+
button:link > label,
|
2393
|
+
button:visited > label {
|
2394
|
+
text-decoration-line: underline; }
|
2395
|
+
|
2396
|
+
/*********
|
2397
|
+
* Lists *
|
2398
|
+
*********/
|
2399
|
+
list {
|
2400
|
+
background-color: #282c34;
|
2401
|
+
color: #d3d8e5;
|
2402
|
+
border-width: 0px; }
|
2403
|
+
list:backdrop {
|
2404
|
+
background-color: #282c34;
|
2405
|
+
color: #d3d8e5; }
|
2406
|
+
list row {
|
2407
|
+
padding: 2px; }
|
2408
|
+
|
2409
|
+
row {
|
2410
|
+
transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
|
2411
|
+
row:hover {
|
2412
|
+
transition: none; }
|
2413
|
+
row.activatable.has-open-popup, row.activatable:hover {
|
2414
|
+
background-color: rgba(81, 145, 224, 0.5); }
|
2415
|
+
row.activatable:active {
|
2416
|
+
box-shadow: none;
|
2417
|
+
background-color: #5191e0; }
|
2418
|
+
row.activatable:selected:active {
|
2419
|
+
box-shadow: none;
|
2420
|
+
background-color: #5191e0; }
|
2421
|
+
row.activatable:selected.has-open-popup, row.activatable:selected:hover {
|
2422
|
+
color: #d3d8e5;
|
2423
|
+
background-color: #5191e0; }
|
2424
|
+
row.activatable:selected:backdrop {
|
2425
|
+
background-color: #5191e0; }
|
2426
|
+
|
2427
|
+
/*********
|
2428
|
+
* Menus *
|
2429
|
+
*********/
|
2430
|
+
menubar,
|
2431
|
+
.menubar {
|
2432
|
+
-GtkWidget-window-dragging: true;
|
2433
|
+
padding: 0px;
|
2434
|
+
box-shadow: none;
|
2435
|
+
border-style: none;
|
2436
|
+
background-color: #282c34; }
|
2437
|
+
menubar:backdrop,
|
2438
|
+
.menubar:backdrop {
|
2439
|
+
background-color: #282c34; }
|
2440
|
+
menubar > menuitem,
|
2441
|
+
.menubar > menuitem {
|
2442
|
+
min-height: 16px;
|
2443
|
+
padding: 4px 6px; }
|
2444
|
+
menubar > menuitem:hover,
|
2445
|
+
.menubar > menuitem:hover {
|
2446
|
+
background-color: #5191e0;
|
2447
|
+
color: #eff1f5; }
|
2448
|
+
menubar > menuitem:disabled,
|
2449
|
+
.menubar > menuitem:disabled {
|
2450
|
+
color: rgba(186, 194, 214, 0.35);
|
2451
|
+
box-shadow: none; }
|
2452
|
+
menubar > menuitem:disabled:backdrop,
|
2453
|
+
.menubar > menuitem:disabled:backdrop {
|
2454
|
+
background-color: #282c34;
|
2455
|
+
color: rgba(186, 194, 214, 0.35); }
|
2456
|
+
menubar > menuitem:backdrop,
|
2457
|
+
.menubar > menuitem:backdrop {
|
2458
|
+
background-color: #282c34;
|
2459
|
+
color: #d3d8e5; }
|
2460
|
+
|
2461
|
+
menu,
|
2462
|
+
.menu {
|
2463
|
+
padding: 0px;
|
2464
|
+
background-color: #282c34;
|
2465
|
+
border: 0px solid transparent;
|
2466
|
+
box-shadow: inset 0px 0px 0px 1px #535760;
|
2467
|
+
border-radius: 3px; }
|
2468
|
+
.csd menu, .csd
|
2469
|
+
.menu {
|
2470
|
+
border: 0px solid;
|
2471
|
+
border-radius: 3px; }
|
2472
|
+
menu separator,
|
2473
|
+
.menu separator {
|
2474
|
+
color: #535760;
|
2475
|
+
margin-top: 3px;
|
2476
|
+
margin-bottom: 3px; }
|
2477
|
+
menu menuitem,
|
2478
|
+
.menu menuitem {
|
2479
|
+
text-shadow: none;
|
2480
|
+
min-height: 16px;
|
2481
|
+
min-width: 40px;
|
2482
|
+
padding: 4px 4px; }
|
2483
|
+
menu menuitem:hover,
|
2484
|
+
.menu menuitem:hover {
|
2485
|
+
color: #eff1f5;
|
2486
|
+
background-color: #5191e0; }
|
2487
|
+
menu menuitem:disabled,
|
2488
|
+
.menu menuitem:disabled {
|
2489
|
+
color: rgba(186, 194, 214, 0.35); }
|
2490
|
+
menu menuitem:disabled:backdrop,
|
2491
|
+
.menu menuitem:disabled:backdrop {
|
2492
|
+
color: rgba(186, 194, 214, 0.35); }
|
2493
|
+
menu menuitem:backdrop, menu menuitem:backdrop:hover,
|
2494
|
+
.menu menuitem:backdrop,
|
2495
|
+
.menu menuitem:backdrop:hover {
|
2496
|
+
color: #d3d8e5;
|
2497
|
+
background-color: #282c34; }
|
2498
|
+
menu menuitem arrow,
|
2499
|
+
.menu menuitem arrow {
|
2500
|
+
min-height: 16px;
|
2501
|
+
min-width: 16px; }
|
2502
|
+
menu menuitem arrow:dir(ltr),
|
2503
|
+
.menu menuitem arrow:dir(ltr) {
|
2504
|
+
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
|
2505
|
+
margin-left: 10px; }
|
2506
|
+
menu menuitem arrow:dir(rtl),
|
2507
|
+
.menu menuitem arrow:dir(rtl) {
|
2508
|
+
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
|
2509
|
+
margin-right: 10px; }
|
2510
|
+
menu > arrow,
|
2511
|
+
.menu > arrow {
|
2512
|
+
border-color: rgba(255, 255, 255, 0);
|
2513
|
+
background-color: transparent;
|
2514
|
+
background-image: none;
|
2515
|
+
box-shadow: none;
|
2516
|
+
color: #d3d8e5;
|
2517
|
+
text-shadow: none;
|
2518
|
+
-gtk-icon-shadow: none;
|
2519
|
+
min-height: 16px;
|
2520
|
+
min-width: 16px;
|
2521
|
+
padding: 4px;
|
2522
|
+
background-color: transparent;
|
2523
|
+
border-radius: 0; }
|
2524
|
+
menu > arrow.top,
|
2525
|
+
.menu > arrow.top {
|
2526
|
+
margin-top: -6px;
|
2527
|
+
border: none;
|
2528
|
+
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
|
2529
|
+
menu > arrow.bottom,
|
2530
|
+
.menu > arrow.bottom {
|
2531
|
+
margin-bottom: -6px;
|
2532
|
+
border: none;
|
2533
|
+
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
2534
|
+
menu > arrow:hover,
|
2535
|
+
.menu > arrow:hover {
|
2536
|
+
color: #5191e0; }
|
2537
|
+
menu > arrow:active,
|
2538
|
+
.menu > arrow:active {
|
2539
|
+
color: #5191e0; }
|
2540
|
+
menu > arrow:backdrop,
|
2541
|
+
.menu > arrow:backdrop {
|
2542
|
+
background-color: #282c34; }
|
2543
|
+
menu > arrow:disabled,
|
2544
|
+
.menu > arrow:disabled {
|
2545
|
+
color: transparent;
|
2546
|
+
background-color: transparent;
|
2547
|
+
border-color: transparent; }
|
2548
|
+
|
2549
|
+
menuitem accelerator {
|
2550
|
+
color: alpha(currentColor,0.55); }
|
2551
|
+
|
2552
|
+
menuitem check,
|
2553
|
+
menuitem radio {
|
2554
|
+
min-height: 18px;
|
2555
|
+
min-width: 18px; }
|
2556
|
+
menuitem check:dir(ltr),
|
2557
|
+
menuitem radio:dir(ltr) {
|
2558
|
+
margin-right: 6px; }
|
2559
|
+
menuitem check:dir(rtl),
|
2560
|
+
menuitem radio:dir(rtl) {
|
2561
|
+
margin-left: 6px; }
|
2562
|
+
|
2563
|
+
/***************
|
2564
|
+
* Popovers *
|
2565
|
+
***************/
|
2566
|
+
/* menu buttons */
|
2567
|
+
modelbutton.flat, popover.background checkbutton,
|
2568
|
+
popover.background radiobutton,
|
2569
|
+
.menuitem.button.flat {
|
2570
|
+
min-height: 16px;
|
2571
|
+
padding: 4px 8px;
|
2572
|
+
color: #d3d8e5; }
|
2573
|
+
modelbutton.flat:hover, popover.background checkbutton:hover,
|
2574
|
+
popover.background radiobutton:hover,
|
2575
|
+
.menuitem.button.flat:hover {
|
2576
|
+
background-color: #5191e0;
|
2577
|
+
color: #eff1f5; }
|
2578
|
+
modelbutton.flat:selected, popover.background checkbutton:selected,
|
2579
|
+
popover.background radiobutton:selected,
|
2580
|
+
.menuitem.button.flat:selected {
|
2581
|
+
background-color: #5191e0;
|
2582
|
+
color: #eff1f5; }
|
2583
|
+
modelbutton.flat:backdrop, popover.background checkbutton:backdrop,
|
2584
|
+
popover.background radiobutton:backdrop, modelbutton.flat:backdrop:hover, popover.background checkbutton:backdrop:hover,
|
2585
|
+
popover.background radiobutton:backdrop:hover,
|
2586
|
+
.menuitem.button.flat:backdrop,
|
2587
|
+
.menuitem.button.flat:backdrop:hover {
|
2588
|
+
color: #d3d8e5; }
|
2589
|
+
modelbutton.flat check:hover, popover.background checkbutton check:hover, popover.background radiobutton check:hover,
|
2590
|
+
.menuitem.button.flat check:hover {
|
2591
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-unchecked.png"), url("../assets/check-unchecked@2.png")); }
|
2592
|
+
modelbutton.flat radio:hover, popover.background checkbutton radio:hover, popover.background radiobutton radio:hover,
|
2593
|
+
.menuitem.button.flat radio:hover {
|
2594
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-unchecked.png"), url("../assets/radio-unchecked@2.png")); }
|
2595
|
+
modelbutton.flat check:checked:hover, popover.background checkbutton check:checked:hover, popover.background radiobutton check:checked:hover,
|
2596
|
+
.menuitem.button.flat check:checked:hover {
|
2597
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-checked-active.png"), url("../assets/check-checked-active@2.png")); }
|
2598
|
+
modelbutton.flat radio:checked:hover, popover.background checkbutton radio:checked:hover, popover.background radiobutton radio:checked:hover,
|
2599
|
+
.menuitem.button.flat radio:checked:hover {
|
2600
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-checked-active.png"), url("../assets/radio-checked-active@2.png")); }
|
2601
|
+
modelbutton.flat check:indeterminate:hover, popover.background checkbutton check:indeterminate:hover, popover.background radiobutton check:indeterminate:hover,
|
2602
|
+
.menuitem.button.flat check:indeterminate:hover {
|
2603
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/check-mixed.png"), url("../assets/check-mixed@2.png")); }
|
2604
|
+
modelbutton.flat radio:indeterminate:hover, popover.background checkbutton radio:indeterminate:hover, popover.background radiobutton radio:indeterminate:hover,
|
2605
|
+
.menuitem.button.flat radio:indeterminate:hover {
|
2606
|
+
-gtk-icon-source: -gtk-scaled(url("../assets/radio-mixed.png"), url("../assets/radio-mixed@2.png")); }
|
2607
|
+
modelbutton.flat check:last-child, popover.background checkbutton check:last-child, popover.background radiobutton check:last-child,
|
2608
|
+
modelbutton.flat radio:last-child,
|
2609
|
+
popover.background checkbutton radio:last-child,
|
2610
|
+
popover.background radiobutton radio:last-child,
|
2611
|
+
.menuitem.button.flat check:last-child,
|
2612
|
+
.menuitem.button.flat radio:last-child {
|
2613
|
+
margin-right: 0px; }
|
2614
|
+
modelbutton.flat check:first-child, popover.background checkbutton check:first-child, popover.background radiobutton check:first-child,
|
2615
|
+
modelbutton.flat radio:first-child,
|
2616
|
+
popover.background checkbutton radio:first-child,
|
2617
|
+
popover.background radiobutton radio:first-child,
|
2618
|
+
.menuitem.button.flat check:first-child,
|
2619
|
+
.menuitem.button.flat radio:first-child {
|
2620
|
+
margin-left: 0px; }
|
2621
|
+
|
2622
|
+
modelbutton.flat arrow, popover.background checkbutton arrow, popover.background radiobutton arrow {
|
2623
|
+
background: none; }
|
2624
|
+
modelbutton.flat arrow:hover, popover.background checkbutton arrow:hover, popover.background radiobutton arrow:hover {
|
2625
|
+
background: none; }
|
2626
|
+
modelbutton.flat arrow.left, popover.background checkbutton arrow.left, popover.background radiobutton arrow.left {
|
2627
|
+
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
|
2628
|
+
modelbutton.flat arrow.right, popover.background checkbutton arrow.right, popover.background radiobutton arrow.right {
|
2629
|
+
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
|
2630
|
+
|
2631
|
+
popover.background {
|
2632
|
+
padding: 0px;
|
2633
|
+
border: 1px solid #535760;
|
2634
|
+
border-radius: 3px;
|
2635
|
+
background-color: #282c34;
|
2636
|
+
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.9); }
|
2637
|
+
popover.background:backdrop {
|
2638
|
+
box-shadow: none; }
|
2639
|
+
popover.background > list,
|
2640
|
+
popover.background > .view,
|
2641
|
+
popover.background > toolbar {
|
2642
|
+
border-style: none;
|
2643
|
+
background-color: transparent; }
|
2644
|
+
.csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier {
|
2645
|
+
border: 1px solid #535760; }
|
2646
|
+
popover.background separator {
|
2647
|
+
margin: 3px; }
|
2648
|
+
popover.background list separator {
|
2649
|
+
margin: 0px; }
|
2650
|
+
|
2651
|
+
GtkVolumeButton.button {
|
2652
|
+
padding: 5px; }
|
2653
|
+
|
2654
|
+
/********
|
2655
|
+
* Misc *
|
2656
|
+
********/
|
2657
|
+
/****************
|
2658
|
+
* Print dialog *
|
2659
|
+
*****************/
|
2660
|
+
printdialog paper {
|
2661
|
+
color: #d3d8e5;
|
2662
|
+
border: 1px solid #535760;
|
2663
|
+
background: white;
|
2664
|
+
padding: 0; }
|
2665
|
+
printdialog paper:backdrop {
|
2666
|
+
color: #d3d8e5;
|
2667
|
+
border-color: #535760;
|
2668
|
+
background: white; }
|
2669
|
+
|
2670
|
+
printdialog .dialog-action-box {
|
2671
|
+
margin: 12px; }
|
2672
|
+
|
2673
|
+
/**********
|
2674
|
+
* Frames *
|
2675
|
+
**********/
|
2676
|
+
frame > border,
|
2677
|
+
.frame {
|
2678
|
+
box-shadow: none;
|
2679
|
+
margin: 0;
|
2680
|
+
padding: 0;
|
2681
|
+
border-radius: 0;
|
2682
|
+
border: 1px solid #535760; }
|
2683
|
+
frame > border.flat,
|
2684
|
+
.frame.flat {
|
2685
|
+
border-style: none; }
|
2686
|
+
frame > border:backdrop,
|
2687
|
+
.frame:backdrop {
|
2688
|
+
border-color: #535760; }
|
2689
|
+
|
2690
|
+
actionbar > revealer > box {
|
2691
|
+
padding: 6px;
|
2692
|
+
border-top: 1px solid #535760; }
|
2693
|
+
actionbar > revealer > box:backdrop {
|
2694
|
+
border-color: #535760; }
|
2695
|
+
|
2696
|
+
scrolledwindow viewport.frame {
|
2697
|
+
border-style: none; }
|
2698
|
+
|
2699
|
+
scrolledwindow junction {
|
2700
|
+
border-color: transparent;
|
2701
|
+
background-color: transparent;
|
2702
|
+
background-image: none; }
|
2703
|
+
|
2704
|
+
separator {
|
2705
|
+
background: #535760;
|
2706
|
+
min-width: 1px;
|
2707
|
+
min-height: 1px; }
|
2708
|
+
|
2709
|
+
/*************
|
2710
|
+
* Expanders *
|
2711
|
+
*************/
|
2712
|
+
expander arrow {
|
2713
|
+
min-width: 16px;
|
2714
|
+
min-height: 16px;
|
2715
|
+
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
|
2716
|
+
expander arrow:dir(rtl) {
|
2717
|
+
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
|
2718
|
+
expander arrow:hover {
|
2719
|
+
color: white; }
|
2720
|
+
expander arrow:checked {
|
2721
|
+
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
2722
|
+
|
2723
|
+
/*********
|
2724
|
+
* Paned *
|
2725
|
+
*********/
|
2726
|
+
paned > separator {
|
2727
|
+
min-width: 1px;
|
2728
|
+
min-height: 1px;
|
2729
|
+
-gtk-icon-source: none;
|
2730
|
+
border-style: none;
|
2731
|
+
background-color: transparent;
|
2732
|
+
background-image: image(#535760);
|
2733
|
+
background-size: 1px 1px; }
|
2734
|
+
paned > separator:backdrop {
|
2735
|
+
background-image: image(#535760); }
|
2736
|
+
paned > separator.wide {
|
2737
|
+
min-width: 5px;
|
2738
|
+
min-height: 5px;
|
2739
|
+
background-color: #282c34;
|
2740
|
+
background-image: image(#535760), image(#535760);
|
2741
|
+
background-size: 1px 1px, 1px 1px; }
|
2742
|
+
paned > separator.wide:backdrop {
|
2743
|
+
background-color: #282c34;
|
2744
|
+
background-image: image(#535760), image(#535760); }
|
2745
|
+
|
2746
|
+
paned.horizontal > separator {
|
2747
|
+
background-repeat: repeat-y; }
|
2748
|
+
paned.horizontal > separator:dir(ltr) {
|
2749
|
+
margin: 0 -8px 0 0;
|
2750
|
+
padding: 0 8px 0 0;
|
2751
|
+
background-position: left; }
|
2752
|
+
paned.horizontal > separator:dir(rtl) {
|
2753
|
+
margin: 0 0 0 -8px;
|
2754
|
+
padding: 0 0 0 8px;
|
2755
|
+
background-position: right; }
|
2756
|
+
paned.horizontal > separator.wide {
|
2757
|
+
margin: 0;
|
2758
|
+
padding: 0;
|
2759
|
+
background-repeat: repeat-y, repeat-y;
|
2760
|
+
background-position: left, right; }
|
2761
|
+
|
2762
|
+
paned.vertical > separator {
|
2763
|
+
margin: 0 0 -8px 0;
|
2764
|
+
padding: 0 0 8px 0;
|
2765
|
+
background-repeat: repeat-x;
|
2766
|
+
background-position: top; }
|
2767
|
+
paned.vertical > separator.wide {
|
2768
|
+
margin: 0;
|
2769
|
+
padding: 0;
|
2770
|
+
background-repeat: repeat-x, repeat-x;
|
2771
|
+
background-position: bottom, top; }
|
2772
|
+
|
2773
|
+
/*********************
|
2774
|
+
* Spinner Animation *
|
2775
|
+
*********************/
|
2776
|
+
@keyframes spin {
|
2777
|
+
to {
|
2778
|
+
-gtk-icon-transform: rotate(1turn); } }
|
2779
|
+
|
2780
|
+
spinner {
|
2781
|
+
background-image: none;
|
2782
|
+
opacity: 0;
|
2783
|
+
-gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
|
2784
|
+
spinner:checked {
|
2785
|
+
opacity: 1;
|
2786
|
+
animation: spin 1s linear infinite; }
|
2787
|
+
spinner:checked:disabled {
|
2788
|
+
opacity: 0.5; }
|
2789
|
+
|
2790
|
+
/*****************
|
2791
|
+
* Notebooks and *
|
2792
|
+
* Tabs *
|
2793
|
+
*****************/
|
2794
|
+
/*************
|
2795
|
+
* Notebooks *
|
2796
|
+
*************/
|
2797
|
+
notebook.frame {
|
2798
|
+
border: none;
|
2799
|
+
padding: 0px;
|
2800
|
+
box-shadow: inset 0px 0px 0px 1px #535760; }
|
2801
|
+
|
2802
|
+
notebook > header {
|
2803
|
+
padding: 0px;
|
2804
|
+
border: none;
|
2805
|
+
background-color: #282c34; }
|
2806
|
+
notebook > header.top {
|
2807
|
+
box-shadow: inset 0 -1px #535760; }
|
2808
|
+
notebook > header.top:backdrop {
|
2809
|
+
box-shadow: inset 0 -1px #535760; }
|
2810
|
+
notebook > header.bottom {
|
2811
|
+
box-shadow: inset 0 1px #535760; }
|
2812
|
+
notebook > header.bottom:backdrop {
|
2813
|
+
box-shadow: inset 0 1px #535760; }
|
2814
|
+
notebook > header.right {
|
2815
|
+
box-shadow: inset 1px 0 #535760; }
|
2816
|
+
notebook > header.right:backdrop {
|
2817
|
+
box-shadow: inset 1px 0 #535760; }
|
2818
|
+
notebook > header.left {
|
2819
|
+
box-shadow: inset -1px 0 #535760; }
|
2820
|
+
notebook > header.left:backdrop {
|
2821
|
+
box-shadow: inset -1px 0 #535760; }
|
2822
|
+
notebook > header:backdrop {
|
2823
|
+
background-color: #282c34; }
|
2824
|
+
notebook > header tabs {
|
2825
|
+
margin: 0px; }
|
2826
|
+
notebook > header.top > tabs > tab {
|
2827
|
+
padding: 4px 6px;
|
2828
|
+
border: 1px solid rgba(211, 216, 229, 0.2);
|
2829
|
+
background-color: rgba(211, 216, 229, 0.2);
|
2830
|
+
border-radius: 3px 3px 0px 0px;
|
2831
|
+
border-bottom-color: transparent; }
|
2832
|
+
notebook > header.top > tabs > tab:hover, notebook > header.top > tabs > tab.prelight-page {
|
2833
|
+
background-color: rgba(81, 145, 224, 0.2);
|
2834
|
+
border-color: rgba(81, 145, 224, 0.2); }
|
2835
|
+
notebook > header.top > tabs > tab:checked {
|
2836
|
+
border-color: #535760;
|
2837
|
+
border-bottom-color: #282c34;
|
2838
|
+
background-color: #282c34; }
|
2839
|
+
notebook > header.top > tabs > tab:checked:backdrop {
|
2840
|
+
border-color: #535760;
|
2841
|
+
border-bottom-color: #282c34;
|
2842
|
+
background-color: #282c34; }
|
2843
|
+
notebook > header.bottom > tabs > tab {
|
2844
|
+
padding: 4px 6px;
|
2845
|
+
border: 1px solid rgba(211, 216, 229, 0.2);
|
2846
|
+
background-color: rgba(211, 216, 229, 0.2);
|
2847
|
+
border-radius: 0px 0px 3px 3px;
|
2848
|
+
border-top-color: transparent; }
|
2849
|
+
notebook > header.bottom > tabs > tab:hover, notebook > header.bottom > tabs > tab.prelight-page {
|
2850
|
+
background-color: rgba(81, 145, 224, 0.2);
|
2851
|
+
border-color: rgba(81, 145, 224, 0.2); }
|
2852
|
+
notebook > header.bottom > tabs > tab:checked {
|
2853
|
+
border-color: #535760;
|
2854
|
+
border-top-color: #282c34;
|
2855
|
+
background-color: #282c34; }
|
2856
|
+
notebook > header.bottom > tabs > tab:checked:backdrop {
|
2857
|
+
border-color: #535760;
|
2858
|
+
border-top-color: #282c34;
|
2859
|
+
background-color: #282c34; }
|
2860
|
+
notebook > header.left > tabs > tab {
|
2861
|
+
padding: 4px 6px;
|
2862
|
+
border: 1px solid rgba(211, 216, 229, 0.2);
|
2863
|
+
background-color: rgba(211, 216, 229, 0.2);
|
2864
|
+
border-radius: 3px 0px 0px 3px;
|
2865
|
+
border-right-color: transparent; }
|
2866
|
+
notebook > header.left > tabs > tab:hover, notebook > header.left > tabs > tab.prelight-page {
|
2867
|
+
background-color: rgba(81, 145, 224, 0.2);
|
2868
|
+
border-color: rgba(81, 145, 224, 0.2); }
|
2869
|
+
notebook > header.left > tabs > tab:checked {
|
2870
|
+
border-color: #535760;
|
2871
|
+
border-right-color: #282c34;
|
2872
|
+
background-color: #282c34; }
|
2873
|
+
notebook > header.left > tabs > tab:checked:backdrop {
|
2874
|
+
border-color: #535760;
|
2875
|
+
border-right-color: #282c34;
|
2876
|
+
background-color: #282c34; }
|
2877
|
+
notebook > header.right > tabs > tab {
|
2878
|
+
padding: 4px 6px;
|
2879
|
+
border: 1px solid rgba(211, 216, 229, 0.2);
|
2880
|
+
background-color: rgba(211, 216, 229, 0.2);
|
2881
|
+
border-radius: 0px 3px 3px 0px;
|
2882
|
+
border-left-color: transparent; }
|
2883
|
+
notebook > header.right > tabs > tab:hover, notebook > header.right > tabs > tab.prelight-page {
|
2884
|
+
background-color: rgba(81, 145, 224, 0.2);
|
2885
|
+
border-color: rgba(81, 145, 224, 0.2); }
|
2886
|
+
notebook > header.right > tabs > tab:checked {
|
2887
|
+
border-color: #535760;
|
2888
|
+
border-left-color: #282c34;
|
2889
|
+
background-color: #282c34; }
|
2890
|
+
notebook > header.right > tabs > tab:checked:backdrop {
|
2891
|
+
border-color: #535760;
|
2892
|
+
border-left-color: #282c34;
|
2893
|
+
background-color: #282c34; }
|
2894
|
+
notebook > header.top > tabs > tab.reorderable-page {
|
2895
|
+
border-width: 3px;
|
2896
|
+
border-style: solid;
|
2897
|
+
border-color: transparent;
|
2898
|
+
background-color: #282c34;
|
2899
|
+
background-clip: padding-box;
|
2900
|
+
border-right-width: 1px;
|
2901
|
+
border-right-color: #535760;
|
2902
|
+
box-shadow: inset -3px 0px 0px 0px #282c34; }
|
2903
|
+
notebook > header.top > tabs > tab.reorderable-page:hover, notebook > header.top > tabs > tab.reorderable-page.prelight-page {
|
2904
|
+
box-shadow: inset 0px -3px 0px 0px rgba(81, 145, 224, 0.2), inset -3px 0px 0px 0px #282c34; }
|
2905
|
+
notebook > header.top > tabs > tab.reorderable-page:checked {
|
2906
|
+
box-shadow: inset 0px -3px 0px 0px #5191e0, inset -3px 0px 0px 0px #282c34; }
|
2907
|
+
notebook > header.top > tabs > tab.reorderable-page:checked:backdrop {
|
2908
|
+
background-color: #282c34;
|
2909
|
+
border-color: transparent;
|
2910
|
+
border-right-color: #535760;
|
2911
|
+
box-shadow: none; }
|
2912
|
+
notebook > header.top > tabs > tab.reorderable-page:backdrop {
|
2913
|
+
background-color: #282c34;
|
2914
|
+
border-right-color: #535760;
|
2915
|
+
box-shadow: none; }
|
2916
|
+
notebook > header.bottom > tabs > tab.reorderable-page {
|
2917
|
+
border-width: 3px;
|
2918
|
+
border-style: solid;
|
2919
|
+
border-color: transparent;
|
2920
|
+
background-color: #282c34;
|
2921
|
+
background-clip: padding-box;
|
2922
|
+
border-right-width: 1px;
|
2923
|
+
border-right-color: #535760;
|
2924
|
+
box-shadow: inset -3px 0px 0px 0px #282c34; }
|
2925
|
+
notebook > header.bottom > tabs > tab.reorderable-page:hover, notebook > header.bottom > tabs > tab.reorderable-page.prelight-page {
|
2926
|
+
box-shadow: inset 0px -3px 0px 0px rgba(81, 145, 224, 0.2), inset -3px 0px 0px 0px #282c34; }
|
2927
|
+
notebook > header.bottom > tabs > tab.reorderable-page:checked {
|
2928
|
+
box-shadow: inset 0px -3px 0px 0px #5191e0, inset -3px 0px 0px 0px #282c34; }
|
2929
|
+
notebook > header.bottom > tabs > tab.reorderable-page:checked:backdrop {
|
2930
|
+
background-color: #282c34;
|
2931
|
+
border-color: transparent;
|
2932
|
+
border-right-color: #535760;
|
2933
|
+
box-shadow: none; }
|
2934
|
+
notebook > header.bottom > tabs > tab.reorderable-page:backdrop {
|
2935
|
+
background-color: #282c34;
|
2936
|
+
border-right-color: #535760;
|
2937
|
+
box-shadow: none; }
|
2938
|
+
notebook > header.left > tabs > tab.reorderable-page {
|
2939
|
+
border-width: 3px;
|
2940
|
+
border-style: solid;
|
2941
|
+
border-color: transparent;
|
2942
|
+
background-color: #282c34;
|
2943
|
+
background-clip: padding-box;
|
2944
|
+
border-bottom-width: 1px;
|
2945
|
+
border-bottom-color: #535760;
|
2946
|
+
box-shadow: inset 0px -3px 0px 0px #282c34; }
|
2947
|
+
notebook > header.left > tabs > tab.reorderable-page:hover, notebook > header.left > tabs > tab.reorderable-page.prelight-page {
|
2948
|
+
box-shadow: inset 0px -3px 0px 0px rgba(81, 145, 224, 0.2), inset 0px -3px 0px 0px #282c34; }
|
2949
|
+
notebook > header.left > tabs > tab.reorderable-page:checked {
|
2950
|
+
box-shadow: inset 0px -3px 0px 0px #5191e0, inset 0px -3px 0px 0px #282c34; }
|
2951
|
+
notebook > header.left > tabs > tab.reorderable-page:checked:backdrop {
|
2952
|
+
background-color: #282c34;
|
2953
|
+
border-color: transparent;
|
2954
|
+
border-bottom-color: #535760;
|
2955
|
+
box-shadow: none; }
|
2956
|
+
notebook > header.left > tabs > tab.reorderable-page:backdrop {
|
2957
|
+
background-color: #282c34;
|
2958
|
+
border-bottom-color: #535760;
|
2959
|
+
box-shadow: none; }
|
2960
|
+
notebook > header.right > tabs > tab.reorderable-page {
|
2961
|
+
border-width: 3px;
|
2962
|
+
border-style: solid;
|
2963
|
+
border-color: transparent;
|
2964
|
+
background-color: #282c34;
|
2965
|
+
background-clip: padding-box;
|
2966
|
+
border-bottom-width: 1px;
|
2967
|
+
border-bottom-color: #535760;
|
2968
|
+
box-shadow: inset 0px -3px 0px 0px #282c34; }
|
2969
|
+
notebook > header.right > tabs > tab.reorderable-page:hover, notebook > header.right > tabs > tab.reorderable-page.prelight-page {
|
2970
|
+
box-shadow: inset 0px -3px 0px 0px rgba(81, 145, 224, 0.2), inset 0px -3px 0px 0px #282c34; }
|
2971
|
+
notebook > header.right > tabs > tab.reorderable-page:checked {
|
2972
|
+
box-shadow: inset 0px -3px 0px 0px #5191e0, inset 0px -3px 0px 0px #282c34; }
|
2973
|
+
notebook > header.right > tabs > tab.reorderable-page:checked:backdrop {
|
2974
|
+
background-color: #282c34;
|
2975
|
+
border-color: transparent;
|
2976
|
+
border-bottom-color: #535760;
|
2977
|
+
box-shadow: none; }
|
2978
|
+
notebook > header.right > tabs > tab.reorderable-page:backdrop {
|
2979
|
+
background-color: #282c34;
|
2980
|
+
border-bottom-color: #535760;
|
2981
|
+
box-shadow: none; }
|
2982
|
+
notebook > header.top > tabs > arrow {
|
2983
|
+
border-top-style: none; }
|
2984
|
+
notebook > header.bottom > tabs > arrow {
|
2985
|
+
border-bottom-style: none; }
|
2986
|
+
notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
|
2987
|
+
margin-left: -5px;
|
2988
|
+
margin-right: -5px;
|
2989
|
+
padding-left: 4px;
|
2990
|
+
padding-right: 4px; }
|
2991
|
+
notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
|
2992
|
+
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
|
2993
|
+
notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
|
2994
|
+
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
|
2995
|
+
notebook > header.left > tabs > arrow {
|
2996
|
+
border-left-style: none; }
|
2997
|
+
notebook > header.right > tabs > arrow {
|
2998
|
+
border-right-style: none; }
|
2999
|
+
notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
|
3000
|
+
margin-top: -5px;
|
3001
|
+
margin-bottom: -5px;
|
3002
|
+
padding-top: 4px;
|
3003
|
+
padding-bottom: 4px; }
|
3004
|
+
notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
|
3005
|
+
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
|
3006
|
+
notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
|
3007
|
+
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
3008
|
+
notebook > header > tabs > arrow {
|
3009
|
+
min-height: 16px;
|
3010
|
+
min-width: 16px;
|
3011
|
+
border-radius: 0; }
|
3012
|
+
notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) {
|
3013
|
+
background-clip: padding-box;
|
3014
|
+
background-image: none;
|
3015
|
+
background-color: rgba(255, 255, 255, 0.3);
|
3016
|
+
border-color: transparent;
|
3017
|
+
box-shadow: none; }
|
3018
|
+
notebook > header > tabs > arrow:disabled {
|
3019
|
+
border-color: rgba(255, 255, 255, 0);
|
3020
|
+
background-color: transparent;
|
3021
|
+
background-image: none;
|
3022
|
+
box-shadow: none;
|
3023
|
+
color: #d3d8e5;
|
3024
|
+
text-shadow: none;
|
3025
|
+
-gtk-icon-shadow: none; }
|
3026
|
+
notebook > header button.flat {
|
3027
|
+
padding: 0;
|
3028
|
+
margin: 4px;
|
3029
|
+
min-width: 12px;
|
3030
|
+
min-height: 12px;
|
3031
|
+
border: 0px solid;
|
3032
|
+
border-radius: 50%;
|
3033
|
+
color: #282c34;
|
3034
|
+
background-color: #535760;
|
3035
|
+
background-image: none; }
|
3036
|
+
notebook > header button.flat:hover {
|
3037
|
+
background-color: #da4453; }
|
3038
|
+
notebook > header button.flat:active {
|
3039
|
+
background-color: #da4453; }
|
3040
|
+
notebook > header button.flat:backdrop {
|
3041
|
+
background-color: #535760;
|
3042
|
+
color: #282c34; }
|
3043
|
+
|
3044
|
+
notebook > stack:not(:only-child) {
|
3045
|
+
background-color: transparent;
|
3046
|
+
border-style: solid;
|
3047
|
+
border-color: #535760;
|
3048
|
+
border-width: 0px; }
|
3049
|
+
|
3050
|
+
scrolledwindow overshoot.top {
|
3051
|
+
background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#3b3e45), to(rgba(59, 62, 69, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(211, 216, 229, 0.07)), to(rgba(211, 216, 229, 0)));
|
3052
|
+
background-size: 100% 5%, 100% 100%;
|
3053
|
+
background-repeat: no-repeat;
|
3054
|
+
background-position: center top;
|
3055
|
+
background-color: transparent;
|
3056
|
+
border: none;
|
3057
|
+
box-shadow: none; }
|
3058
|
+
scrolledwindow overshoot.top:backdrop {
|
3059
|
+
background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#535760), to(rgba(83, 87, 96, 0)));
|
3060
|
+
background-size: 100% 5%;
|
3061
|
+
background-repeat: no-repeat;
|
3062
|
+
background-position: center top;
|
3063
|
+
background-color: transparent;
|
3064
|
+
border: none;
|
3065
|
+
box-shadow: none; }
|
3066
|
+
|
3067
|
+
scrolledwindow overshoot.bottom {
|
3068
|
+
background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#3b3e45), to(rgba(59, 62, 69, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(211, 216, 229, 0.07)), to(rgba(211, 216, 229, 0)));
|
3069
|
+
background-size: 100% 5%, 100% 100%;
|
3070
|
+
background-repeat: no-repeat;
|
3071
|
+
background-position: center bottom;
|
3072
|
+
background-color: transparent;
|
3073
|
+
border: none;
|
3074
|
+
box-shadow: none; }
|
3075
|
+
scrolledwindow overshoot.bottom:backdrop {
|
3076
|
+
background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#535760), to(rgba(83, 87, 96, 0)));
|
3077
|
+
background-size: 100% 5%;
|
3078
|
+
background-repeat: no-repeat;
|
3079
|
+
background-position: center bottom;
|
3080
|
+
background-color: transparent;
|
3081
|
+
border: none;
|
3082
|
+
box-shadow: none; }
|
3083
|
+
|
3084
|
+
scrolledwindow overshoot.left {
|
3085
|
+
background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#3b3e45), to(rgba(59, 62, 69, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(211, 216, 229, 0.07)), to(rgba(211, 216, 229, 0)));
|
3086
|
+
background-size: 5% 100%, 100% 100%;
|
3087
|
+
background-repeat: no-repeat;
|
3088
|
+
background-position: left center;
|
3089
|
+
background-color: transparent;
|
3090
|
+
border: none;
|
3091
|
+
box-shadow: none; }
|
3092
|
+
scrolledwindow overshoot.left:backdrop {
|
3093
|
+
background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#535760), to(rgba(83, 87, 96, 0)));
|
3094
|
+
background-size: 5% 100%;
|
3095
|
+
background-repeat: no-repeat;
|
3096
|
+
background-position: left center;
|
3097
|
+
background-color: transparent;
|
3098
|
+
border: none;
|
3099
|
+
box-shadow: none; }
|
3100
|
+
|
3101
|
+
scrolledwindow overshoot.right {
|
3102
|
+
background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#3b3e45), to(rgba(59, 62, 69, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(211, 216, 229, 0.07)), to(rgba(211, 216, 229, 0)));
|
3103
|
+
background-size: 5% 100%, 100% 100%;
|
3104
|
+
background-repeat: no-repeat;
|
3105
|
+
background-position: right center;
|
3106
|
+
background-color: transparent;
|
3107
|
+
border: none;
|
3108
|
+
box-shadow: none; }
|
3109
|
+
scrolledwindow overshoot.right:backdrop {
|
3110
|
+
background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#535760), to(rgba(83, 87, 96, 0)));
|
3111
|
+
background-size: 5% 100%;
|
3112
|
+
background-repeat: no-repeat;
|
3113
|
+
background-position: right center;
|
3114
|
+
background-color: transparent;
|
3115
|
+
border: none;
|
3116
|
+
box-shadow: none; }
|
3117
|
+
|
3118
|
+
scrolledwindow undershoot {
|
3119
|
+
background-image: none;
|
3120
|
+
border: none; }
|
3121
|
+
|
3122
|
+
/************
|
3123
|
+
* Pathbars *
|
3124
|
+
************/
|
3125
|
+
.path-bar {
|
3126
|
+
background-color: #282c34;
|
3127
|
+
border-bottom: 1px solid #535760; }
|
3128
|
+
|
3129
|
+
.path-bar button {
|
3130
|
+
border-color: rgba(255, 255, 255, 0);
|
3131
|
+
background-color: transparent;
|
3132
|
+
background-image: none;
|
3133
|
+
box-shadow: none;
|
3134
|
+
color: #d3d8e5;
|
3135
|
+
text-shadow: none;
|
3136
|
+
-gtk-icon-shadow: none;
|
3137
|
+
padding: 4px 8px;
|
3138
|
+
color: #d3d8e5; }
|
3139
|
+
.path-bar button:hover {
|
3140
|
+
border-color: #5191e0; }
|
3141
|
+
.path-bar button:active, .path-bar button:checked {
|
3142
|
+
background-color: #535760;
|
3143
|
+
font-weight: normal; }
|
3144
|
+
.path-bar button.text-button, .path-bar button.image-button, .path-bar button {
|
3145
|
+
padding-left: 4px;
|
3146
|
+
padding-right: 4px; }
|
3147
|
+
.path-bar button.text-button.image-button label {
|
3148
|
+
padding-left: 0;
|
3149
|
+
padding-right: 0; }
|
3150
|
+
.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child {
|
3151
|
+
padding-right: 8px; }
|
3152
|
+
.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child {
|
3153
|
+
padding-left: 8px; }
|
3154
|
+
.path-bar button image {
|
3155
|
+
padding-left: 4px;
|
3156
|
+
padding-right: 4px; }
|
3157
|
+
.path-bar button.slider-button {
|
3158
|
+
padding-left: 0;
|
3159
|
+
padding-right: 0; }
|
3160
|
+
|
3161
|
+
/*****************
|
3162
|
+
* Progress bars *
|
3163
|
+
*****************/
|
3164
|
+
progressbar {
|
3165
|
+
font-size: smaller;
|
3166
|
+
color: rgba(211, 216, 229, 0.3); }
|
3167
|
+
progressbar.horizontal trough,
|
3168
|
+
progressbar.horizontal progress {
|
3169
|
+
min-height: 6px; }
|
3170
|
+
progressbar.vertical trough,
|
3171
|
+
progressbar.vertical progress {
|
3172
|
+
min-width: 6px; }
|
3173
|
+
progressbar trough {
|
3174
|
+
border: 0px solid transparent;
|
3175
|
+
border-radius: 3px;
|
3176
|
+
background-color: rgba(211, 216, 229, 0.3); }
|
3177
|
+
progressbar:backdrop trough {
|
3178
|
+
background-color: rgba(211, 216, 229, 0.3); }
|
3179
|
+
progressbar progress {
|
3180
|
+
background-color: #5191e0;
|
3181
|
+
border: 0px solid transparent;
|
3182
|
+
border-radius: 3px;
|
3183
|
+
box-shadow: none; }
|
3184
|
+
progressbar:backdrop progress {
|
3185
|
+
background-color: #5191e0; }
|
3186
|
+
progressbar.osd {
|
3187
|
+
background-color: transparent; }
|
3188
|
+
|
3189
|
+
treeview.view.progressbar {
|
3190
|
+
border: 0px solid transparent;
|
3191
|
+
border-radius: 3px;
|
3192
|
+
background-color: #5191e0;
|
3193
|
+
color: #eff1f5;
|
3194
|
+
background-image: none; }
|
3195
|
+
treeview.view.progressbar:selected:focus, treeview.view.progressbar:selected {
|
3196
|
+
background-color: rgba(239, 241, 245, 0.25); }
|
3197
|
+
|
3198
|
+
treeview.view.trough {
|
3199
|
+
background-color: #5b6069; }
|
3200
|
+
treeview.view.trough:selected:focus, treeview.view.trough:selected {
|
3201
|
+
background-color: rgba(239, 241, 245, 0.3); }
|
3202
|
+
|
3203
|
+
/*************
|
3204
|
+
* Level Bar *
|
3205
|
+
*************/
|
3206
|
+
levelbar block {
|
3207
|
+
min-width: 32px;
|
3208
|
+
min-height: 6px; }
|
3209
|
+
|
3210
|
+
levelbar.vertical block {
|
3211
|
+
min-width: 6px;
|
3212
|
+
min-height: 32px; }
|
3213
|
+
|
3214
|
+
levelbar trough {
|
3215
|
+
border: 1px solid;
|
3216
|
+
padding: 2px;
|
3217
|
+
border-radius: 3px;
|
3218
|
+
color: #d3d8e5;
|
3219
|
+
border-color: #535760;
|
3220
|
+
background-color: #3d424c;
|
3221
|
+
box-shadow: none; }
|
3222
|
+
levelbar trough:backdrop {
|
3223
|
+
color: #d3d8e5;
|
3224
|
+
border-color: #535760;
|
3225
|
+
background-color: #3d424c; }
|
3226
|
+
|
3227
|
+
levelbar.horizontal.discrete block {
|
3228
|
+
margin: 0 1px; }
|
3229
|
+
|
3230
|
+
levelbar.vertical.discrete block {
|
3231
|
+
margin: 1px 0; }
|
3232
|
+
|
3233
|
+
levelbar block:not(.empty) {
|
3234
|
+
border: 1px solid #5191e0;
|
3235
|
+
background-color: #5191e0;
|
3236
|
+
box-shadow: none;
|
3237
|
+
border-radius: 1px; }
|
3238
|
+
levelbar block:not(.empty):backdrop {
|
3239
|
+
border-color: #5191e0;
|
3240
|
+
background-color: #5191e0; }
|
3241
|
+
|
3242
|
+
levelbar block.low {
|
3243
|
+
border-color: #f67400;
|
3244
|
+
background-color: #f67400; }
|
3245
|
+
levelbar block.low:backdrop {
|
3246
|
+
background-color: #f67400;
|
3247
|
+
border-color: #f67400; }
|
3248
|
+
|
3249
|
+
levelbar block.high {
|
3250
|
+
border-color: #27ae60;
|
3251
|
+
background-color: #27ae60; }
|
3252
|
+
levelbar block.high:backdrop {
|
3253
|
+
background-color: #27ae60;
|
3254
|
+
border-color: #27ae60; }
|
3255
|
+
|
3256
|
+
levelbar block.full {
|
3257
|
+
border-color: #27ae60;
|
3258
|
+
background-color: #27ae60; }
|
3259
|
+
levelbar block.full:backdrop {
|
3260
|
+
background-color: #27ae60;
|
3261
|
+
border-color: #27ae60; }
|
3262
|
+
|
3263
|
+
levelbar block.empty {
|
3264
|
+
background-color: rgba(211, 216, 229, 0.3);
|
3265
|
+
border-color: transparent;
|
3266
|
+
box-shadow: none; }
|
3267
|
+
levelbar block.empty:backdrop {
|
3268
|
+
background-color: rgba(211, 216, 229, 0.3); }
|
3269
|
+
|
3270
|
+
/************
|
3271
|
+
* GtkScale *
|
3272
|
+
************/
|
3273
|
+
scale.fine-tune.trough {
|
3274
|
+
margin: 8px;
|
3275
|
+
border-radius: 3px; }
|
3276
|
+
|
3277
|
+
scale slider {
|
3278
|
+
min-width: 18px;
|
3279
|
+
min-height: 18px;
|
3280
|
+
background-color: #404754;
|
3281
|
+
border: 1px solid #535760;
|
3282
|
+
border-radius: 50%;
|
3283
|
+
box-shadow: none;
|
3284
|
+
margin: -9px; }
|
3285
|
+
scale slider:hover {
|
3286
|
+
border-style: solid;
|
3287
|
+
border-width: 2px;
|
3288
|
+
border-color: #5191e0;
|
3289
|
+
border-radius: 50%; }
|
3290
|
+
scale slider:hover:backdrop {
|
3291
|
+
background-color: #404754;
|
3292
|
+
border-color: #5191e0; }
|
3293
|
+
scale slider:disabled {
|
3294
|
+
border-style: solid;
|
3295
|
+
border-radius: 50%;
|
3296
|
+
background-color: #282c34;
|
3297
|
+
border-color: rgba(75, 79, 87, 0.35); }
|
3298
|
+
scale slider:disabled:backdrop {
|
3299
|
+
background-color: #282c34;
|
3300
|
+
border-color: rgba(75, 79, 87, 0.35); }
|
3301
|
+
scale slider:active {
|
3302
|
+
border: 2px solid #5191e0; }
|
3303
|
+
scale slider:active:backdrop {
|
3304
|
+
background-color: #404754;
|
3305
|
+
border-color: #5191e0; }
|
3306
|
+
scale slider:backdrop {
|
3307
|
+
background-color: #404754;
|
3308
|
+
border-color: #535760; }
|
3309
|
+
|
3310
|
+
scale trough {
|
3311
|
+
min-width: 6px;
|
3312
|
+
min-height: 6px;
|
3313
|
+
margin: 9px;
|
3314
|
+
border: 0px solid;
|
3315
|
+
border-radius: 3px;
|
3316
|
+
background-color: #5b6069;
|
3317
|
+
box-shadow: none; }
|
3318
|
+
scale trough:disabled, scale trough.vertical:disabled {
|
3319
|
+
border-color: rgba(83, 87, 95, 0.35);
|
3320
|
+
background-color: rgba(83, 87, 95, 0.35);
|
3321
|
+
box-shadow: none; }
|
3322
|
+
scale trough:disabled:backdrop, scale trough.vertical:disabled:backdrop {
|
3323
|
+
background-color: rgba(83, 87, 95, 0.35);
|
3324
|
+
border-color: rgba(83, 87, 95, 0.35); }
|
3325
|
+
scale trough:backdrop {
|
3326
|
+
background-color: #5b6069;
|
3327
|
+
border-color: #5b6069; }
|
3328
|
+
|
3329
|
+
scale highlight {
|
3330
|
+
border: 0px solid;
|
3331
|
+
border-radius: 3px;
|
3332
|
+
background-color: #5191e0;
|
3333
|
+
border-color: #5191e0; }
|
3334
|
+
scale highlight.vertical {
|
3335
|
+
background-color: #5191e0;
|
3336
|
+
border-color: #5191e0; }
|
3337
|
+
scale highlight:disabled {
|
3338
|
+
background-color: rgba(57, 130, 220, 0.35); }
|
3339
|
+
scale highlight:backdrop {
|
3340
|
+
background-color: rgba(81, 145, 224, 0.5);
|
3341
|
+
border-color: rgba(81, 145, 224, 0.5); }
|
3342
|
+
scale highlight:backdrop:disabled {
|
3343
|
+
background-color: rgba(57, 130, 220, 0.35); }
|
3344
|
+
|
3345
|
+
/**************
|
3346
|
+
* Scrollbars *
|
3347
|
+
**************/
|
3348
|
+
scrollbar {
|
3349
|
+
-GtkScrollbar-has-backward-stepper: false;
|
3350
|
+
-GtkScrollbar-has-forward-stepper: false;
|
3351
|
+
background-color: #282c34;
|
3352
|
+
border-width: 0px 0px;
|
3353
|
+
border-color: #282c34;
|
3354
|
+
margin: 5px; }
|
3355
|
+
scrollbar button {
|
3356
|
+
min-width: 14px;
|
3357
|
+
min-height: 14px;
|
3358
|
+
margin: 0px;
|
3359
|
+
padding: 0px 0px;
|
3360
|
+
border: none;
|
3361
|
+
border-radius: 0px;
|
3362
|
+
background-image: none;
|
3363
|
+
background-color: transparent;
|
3364
|
+
color: transparent;
|
3365
|
+
box-shadow: none; }
|
3366
|
+
scrollbar button:hover {
|
3367
|
+
border: none;
|
3368
|
+
background-image: none;
|
3369
|
+
background-color: #282c34;
|
3370
|
+
color: transparent; }
|
3371
|
+
scrollbar button:active, scrollbar button:active:hover {
|
3372
|
+
border: none;
|
3373
|
+
background-image: none;
|
3374
|
+
background-color: #282c34;
|
3375
|
+
color: transparent; }
|
3376
|
+
scrollbar button:disabled {
|
3377
|
+
border: none;
|
3378
|
+
background-color: #282c34;
|
3379
|
+
background-image: none;
|
3380
|
+
color: transparent; }
|
3381
|
+
scrollbar button:backdrop {
|
3382
|
+
color: #d3d8e5; }
|
3383
|
+
scrollbar button:backdrop:disabled {
|
3384
|
+
color: rgba(186, 194, 214, 0.35); }
|
3385
|
+
scrollbar.dragging, scrollbar.hovering {
|
3386
|
+
opacity: 0.9910; }
|
3387
|
+
scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
|
3388
|
+
opacity: 0.999; }
|
3389
|
+
scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
|
3390
|
+
-GtkScrollbar-has-backward-stepper: false;
|
3391
|
+
-GtkScrollbar-has-forward-stepper: false; }
|
3392
|
+
scrollbar.overlay-indicator {
|
3393
|
+
background: none; }
|
3394
|
+
scrollbar trough {
|
3395
|
+
transition-duration: 0.1s;
|
3396
|
+
min-width: 3px;
|
3397
|
+
min-height: 14px;
|
3398
|
+
border-radius: 8px;
|
3399
|
+
background-color: transparent; }
|
3400
|
+
scrollbar:hover trough {
|
3401
|
+
background-color: #5b6069;
|
3402
|
+
min-width: 6px; }
|
3403
|
+
scrollbar:hover slider {
|
3404
|
+
min-width: 6px;
|
3405
|
+
background-color: #5191e0; }
|
3406
|
+
scrollbar.horizontal trough {
|
3407
|
+
transition-duration: 0.1s;
|
3408
|
+
min-width: 14px;
|
3409
|
+
min-height: 3px;
|
3410
|
+
border-radius: 8px;
|
3411
|
+
background-color: transparent; }
|
3412
|
+
scrollbar.horizontal:hover.horizontal trough {
|
3413
|
+
background-color: #5b6069;
|
3414
|
+
min-height: 6px; }
|
3415
|
+
scrollbar.horizontal:hover.horizontal slider {
|
3416
|
+
min-height: 6px;
|
3417
|
+
background-color: #5191e0; }
|
3418
|
+
scrollbar slider {
|
3419
|
+
transition-duration: 0.1s;
|
3420
|
+
min-width: 3px;
|
3421
|
+
min-height: 30px;
|
3422
|
+
border-radius: 8px;
|
3423
|
+
background-clip: padding-box;
|
3424
|
+
background-color: rgba(151, 156, 167, 0.8); }
|
3425
|
+
scrollbar slider:backdrop {
|
3426
|
+
background-color: #979ca7; }
|
3427
|
+
scrollbar slider:hover {
|
3428
|
+
min-width: 6px;
|
3429
|
+
background-color: #5191e0; }
|
3430
|
+
scrollbar.horizontal slider {
|
3431
|
+
transition-duration: 0.1s;
|
3432
|
+
min-width: 30px;
|
3433
|
+
min-height: 3px;
|
3434
|
+
border-radius: 8px;
|
3435
|
+
background-clip: padding-box;
|
3436
|
+
background-color: rgba(151, 156, 167, 0.8); }
|
3437
|
+
scrollbar.horizontal slider:backdrop {
|
3438
|
+
background-color: #979ca7; }
|
3439
|
+
scrollbar.horizontal slider:hover {
|
3440
|
+
min-height: 6px;
|
3441
|
+
background-color: #5191e0; }
|
3442
|
+
|
3443
|
+
/***********
|
3444
|
+
* Sidebar *
|
3445
|
+
***********/
|
3446
|
+
.sidebar {
|
3447
|
+
border: none;
|
3448
|
+
background-color: #282c34; }
|
3449
|
+
.sidebar:backdrop {
|
3450
|
+
background-color: #282c34; }
|
3451
|
+
|
3452
|
+
placessidebar > viewport.frame {
|
3453
|
+
border-style: none; }
|
3454
|
+
|
3455
|
+
placessidebar row {
|
3456
|
+
min-height: 36px;
|
3457
|
+
padding: 0px; }
|
3458
|
+
placessidebar row > revealer {
|
3459
|
+
padding: 0 14px; }
|
3460
|
+
placessidebar row:selected {
|
3461
|
+
color: #eff1f5; }
|
3462
|
+
placessidebar row:disabled {
|
3463
|
+
color: rgba(186, 194, 214, 0.35); }
|
3464
|
+
placessidebar row:backdrop {
|
3465
|
+
color: #d3d8e5; }
|
3466
|
+
placessidebar row:backdrop:selected {
|
3467
|
+
color: #5191e0; }
|
3468
|
+
placessidebar row:backdrop:disabled {
|
3469
|
+
color: rgba(186, 194, 214, 0.35); }
|
3470
|
+
placessidebar row image.sidebar-icon:dir(ltr) {
|
3471
|
+
padding-right: 8px; }
|
3472
|
+
placessidebar row image.sidebar-icon:dir(rtl) {
|
3473
|
+
padding-left: 8px; }
|
3474
|
+
placessidebar row label.sidebar-label:dir(ltr) {
|
3475
|
+
padding-right: 2px; }
|
3476
|
+
placessidebar row label.sidebar-label:dir(rtl) {
|
3477
|
+
padding-left: 2px; }
|
3478
|
+
button.sidebar-button {
|
3479
|
+
min-height: 26px;
|
3480
|
+
min-width: 26px;
|
3481
|
+
margin-top: 3px;
|
3482
|
+
margin-bottom: 3px;
|
3483
|
+
padding: 0; }
|
3484
|
+
placessidebar row:selected:active {
|
3485
|
+
box-shadow: none; }
|
3486
|
+
placessidebar row.sidebar-placeholder-row {
|
3487
|
+
padding: 0 8px;
|
3488
|
+
min-height: 2px;
|
3489
|
+
background-image: none;
|
3490
|
+
background-clip: content-box; }
|
3491
|
+
placessidebar row.sidebar-new-bookmark-row {
|
3492
|
+
color: #5191e0; }
|
3493
|
+
|
3494
|
+
placesview .server-list-button > image {
|
3495
|
+
transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
3496
|
+
-gtk-icon-transform: rotate(0turn); }
|
3497
|
+
|
3498
|
+
placesview .server-list-button:checked > image {
|
3499
|
+
transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
3500
|
+
-gtk-icon-transform: rotate(-0.5turn); }
|
3501
|
+
|
3502
|
+
placesview row.activatable:hover {
|
3503
|
+
background-color: transparent; }
|
3504
|
+
|
3505
|
+
placesview > actionbar > revealer > box > label {
|
3506
|
+
padding-left: 8px;
|
3507
|
+
padding-right: 8px; }
|
3508
|
+
|
3509
|
+
stacksidebar.sidebar row {
|
3510
|
+
padding: 10px 4px; }
|
3511
|
+
stacksidebar.sidebar row > label {
|
3512
|
+
padding-left: 6px;
|
3513
|
+
padding-right: 6px; }
|
3514
|
+
stacksidebar.sidebar row.needs-attention > .label {
|
3515
|
+
background-size: 6px 6px, 0 0; }
|
3516
|
+
|
3517
|
+
/*****************
|
3518
|
+
* GtkSpinButton *
|
3519
|
+
*****************/
|
3520
|
+
spinbutton:not(.vertical) {
|
3521
|
+
padding: 0; }
|
3522
|
+
spinbutton:not(.vertical) entry {
|
3523
|
+
min-width: 28px;
|
3524
|
+
margin: 0;
|
3525
|
+
background: none;
|
3526
|
+
background-color: transparent;
|
3527
|
+
border: none;
|
3528
|
+
border-radius: 0;
|
3529
|
+
box-shadow: none; }
|
3530
|
+
spinbutton:not(.vertical) entry:backdrop:disabled {
|
3531
|
+
background-color: transparent; }
|
3532
|
+
spinbutton:not(.vertical) button {
|
3533
|
+
min-height: 16px;
|
3534
|
+
margin: 0;
|
3535
|
+
padding-bottom: 0;
|
3536
|
+
padding-top: 0;
|
3537
|
+
color: #d3d8e5;
|
3538
|
+
background-image: none;
|
3539
|
+
background-color: transparent;
|
3540
|
+
border-style: none;
|
3541
|
+
box-shadow: none; }
|
3542
|
+
spinbutton:not(.vertical) button:hover {
|
3543
|
+
color: #5191e0; }
|
3544
|
+
spinbutton:not(.vertical) button:disabled {
|
3545
|
+
color: rgba(186, 194, 214, 0.35); }
|
3546
|
+
spinbutton:not(.vertical) button:active {
|
3547
|
+
color: #5191e0;
|
3548
|
+
box-shadow: none; }
|
3549
|
+
spinbutton:not(.vertical) button:backdrop {
|
3550
|
+
color: #d3d8e5;
|
3551
|
+
background-color: transparent; }
|
3552
|
+
spinbutton:not(.vertical) button:backdrop:disabled {
|
3553
|
+
color: rgba(186, 194, 214, 0.35);
|
3554
|
+
background-color: transparent;
|
3555
|
+
border-style: none; }
|
3556
|
+
spinbutton:not(.vertical) button:dir(ltr):last-child {
|
3557
|
+
border-radius: 0 3px 3px 0; }
|
3558
|
+
spinbutton:not(.vertical) button:dir(rtl):first-child {
|
3559
|
+
border-radius: 3px 0 0 3px; }
|
3560
|
+
|
3561
|
+
spinbutton.vertical:disabled {
|
3562
|
+
color: rgba(186, 194, 214, 0.35); }
|
3563
|
+
|
3564
|
+
spinbutton.vertical:backdrop:disabled {
|
3565
|
+
color: rgba(186, 194, 214, 0.35); }
|
3566
|
+
|
3567
|
+
spinbutton.vertical:drop(active) {
|
3568
|
+
border-color: transparent;
|
3569
|
+
box-shadow: none; }
|
3570
|
+
|
3571
|
+
spinbutton.vertical entry {
|
3572
|
+
margin: 0px;
|
3573
|
+
min-height: 26px;
|
3574
|
+
min-width: 26px;
|
3575
|
+
border-style: none solid none solid;
|
3576
|
+
border-color: #535760;
|
3577
|
+
padding: 0;
|
3578
|
+
border-radius: 0; }
|
3579
|
+
spinbutton.vertical entry:disabled {
|
3580
|
+
color: rgba(186, 194, 214, 0.35);
|
3581
|
+
background-color: rgba(55, 60, 69, 0.35);
|
3582
|
+
border-color: rgba(75, 79, 87, 0.35); }
|
3583
|
+
spinbutton.vertical entry:backdrop:disabled {
|
3584
|
+
color: rgba(186, 194, 214, 0.35);
|
3585
|
+
background-color: rgba(55, 60, 69, 0.35);
|
3586
|
+
border-color: rgba(75, 79, 87, 0.35); }
|
3587
|
+
|
3588
|
+
spinbutton.vertical button {
|
3589
|
+
min-height: 26px;
|
3590
|
+
min-width: 26px;
|
3591
|
+
padding: 0;
|
3592
|
+
box-shadow: none;
|
3593
|
+
background-image: none;
|
3594
|
+
background-color: #3d424c;
|
3595
|
+
color: #d3d8e5;
|
3596
|
+
border-color: #535760; }
|
3597
|
+
spinbutton.vertical button:hover {
|
3598
|
+
color: #5191e0; }
|
3599
|
+
spinbutton.vertical button:active {
|
3600
|
+
color: #5191e0; }
|
3601
|
+
spinbutton.vertical button:disabled {
|
3602
|
+
color: rgba(186, 194, 214, 0.35);
|
3603
|
+
background-color: rgba(55, 60, 69, 0.35);
|
3604
|
+
border-color: rgba(75, 79, 87, 0.35); }
|
3605
|
+
spinbutton.vertical button:backdrop:disabled {
|
3606
|
+
color: rgba(186, 194, 214, 0.35);
|
3607
|
+
background-color: rgba(55, 60, 69, 0.35);
|
3608
|
+
border-color: rgba(75, 79, 87, 0.35); }
|
3609
|
+
|
3610
|
+
spinbutton.vertical button.up {
|
3611
|
+
border-radius: 3px 3px 0 0;
|
3612
|
+
border-style: solid solid none solid; }
|
3613
|
+
|
3614
|
+
spinbutton.vertical button.down {
|
3615
|
+
border-radius: 0 0 3px 3px;
|
3616
|
+
border-style: none solid solid solid; }
|
3617
|
+
|
3618
|
+
treeview spinbutton:not(.vertical) {
|
3619
|
+
min-height: 0;
|
3620
|
+
border-style: none;
|
3621
|
+
border-radius: 0; }
|
3622
|
+
treeview spinbutton:not(.vertical) entry {
|
3623
|
+
min-height: 0;
|
3624
|
+
padding: 1px 2px; }
|
3625
|
+
|
3626
|
+
/**********
|
3627
|
+
* Switch *
|
3628
|
+
**********/
|
3629
|
+
switch {
|
3630
|
+
margin: 2px;
|
3631
|
+
font-weight: bold;
|
3632
|
+
font-size: smaller;
|
3633
|
+
min-width: 48px;
|
3634
|
+
min-height: 24px;
|
3635
|
+
border: 0px solid;
|
3636
|
+
border-radius: 12px;
|
3637
|
+
color: transparent;
|
3638
|
+
background-color: rgba(211, 216, 229, 0.3);
|
3639
|
+
text-shadow: none; }
|
3640
|
+
switch:checked {
|
3641
|
+
background-color: #5191e0; }
|
3642
|
+
switch:backdrop {
|
3643
|
+
background-color: rgba(211, 216, 229, 0.3);
|
3644
|
+
text-shadow: none; }
|
3645
|
+
switch:backdrop:checked {
|
3646
|
+
background-color: #5191e0; }
|
3647
|
+
switch slider {
|
3648
|
+
min-width: 22px;
|
3649
|
+
min-height: 22px;
|
3650
|
+
border: 1px solid;
|
3651
|
+
border-radius: 11px;
|
3652
|
+
background-color: #282c34;
|
3653
|
+
border-color: #535760; }
|
3654
|
+
switch:hover slider {
|
3655
|
+
border-color: #5191e0; }
|
3656
|
+
switch:disabled slider {
|
3657
|
+
background-color: #24282f; }
|
3658
|
+
switch:backdrop slider {
|
3659
|
+
background-color: #282c34; }
|
3660
|
+
switch:backdrop:disabled slider {
|
3661
|
+
background-color: #24282f; }
|
3662
|
+
|
3663
|
+
/************
|
3664
|
+
* Toolbars *
|
3665
|
+
************/
|
3666
|
+
toolbar, .inline-toolbar, searchbar,
|
3667
|
+
.location-bar {
|
3668
|
+
-GtkWidget-window-dragging: true;
|
3669
|
+
padding: 4px;
|
3670
|
+
background-color: #282c34; }
|
3671
|
+
|
3672
|
+
toolbar {
|
3673
|
+
padding: 4px 3px 3px 4px; }
|
3674
|
+
toolbar:backdrop {
|
3675
|
+
background-color: #282c34;
|
3676
|
+
box-shadow: none; }
|
3677
|
+
toolbar button {
|
3678
|
+
margin: 2px;
|
3679
|
+
padding: 3px; }
|
3680
|
+
toolbar button.image-button, toolbar button.text-button.image-button {
|
3681
|
+
padding: 3px; }
|
3682
|
+
toolbar separator {
|
3683
|
+
margin-left: 3px;
|
3684
|
+
margin-right: 3px; }
|
3685
|
+
toolbar entry {
|
3686
|
+
margin: 3px; }
|
3687
|
+
.osd toolbar {
|
3688
|
+
background-color: transparent; }
|
3689
|
+
toolbar.osd {
|
3690
|
+
padding: 13px;
|
3691
|
+
border: none;
|
3692
|
+
border-radius: 3px;
|
3693
|
+
background-color: #282c34; }
|
3694
|
+
toolbar.osd:backdrop {
|
3695
|
+
border-color: #535760;
|
3696
|
+
background-color: #282c34;
|
3697
|
+
box-shadow: none; }
|
3698
|
+
toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom {
|
3699
|
+
border-radius: 0; }
|
3700
|
+
|
3701
|
+
.inline-toolbar {
|
3702
|
+
border-width: 0px 0px 1px 0px;
|
3703
|
+
padding: 3px;
|
3704
|
+
border-radius: 0; }
|
3705
|
+
|
3706
|
+
searchbar,
|
3707
|
+
.location-bar {
|
3708
|
+
border-width: 0px 0px 1px 0px;
|
3709
|
+
padding: 3px; }
|
3710
|
+
|
3711
|
+
.inline-toolbar, searchbar,
|
3712
|
+
.location-bar {
|
3713
|
+
border-style: solid;
|
3714
|
+
border-color: #535760;
|
3715
|
+
text-shadow: none;
|
3716
|
+
background-color: #282c34; }
|
3717
|
+
|
3718
|
+
/************
|
3719
|
+
* Tooltips *
|
3720
|
+
************/
|
3721
|
+
tooltip {
|
3722
|
+
color: #d3d8e5;
|
3723
|
+
padding: 4px;
|
3724
|
+
/* not working */
|
3725
|
+
border-radius: 3px;
|
3726
|
+
box-shadow: none;
|
3727
|
+
text-shadow: none;
|
3728
|
+
border: 1px solid #5d626d; }
|
3729
|
+
tooltip.background {
|
3730
|
+
background-color: #353b45;
|
3731
|
+
background-clip: padding-box; }
|
3732
|
+
tooltip.window-frame.csd {
|
3733
|
+
background-color: transparent;
|
3734
|
+
box-shadow: none; }
|
3735
|
+
tooltip decoration {
|
3736
|
+
background-color: transparent; }
|
3737
|
+
|
3738
|
+
tooltip * {
|
3739
|
+
padding: 0px;
|
3740
|
+
background-color: transparent;
|
3741
|
+
color: #d3d8e5; }
|
3742
|
+
|
3743
|
+
/**************
|
3744
|
+
* Tree Views *
|
3745
|
+
**************/
|
3746
|
+
|
3747
|
+
treeview.view {
|
3748
|
+
-GtkTreeView-grid-line-width: 0;
|
3749
|
+
-GtkTreeView-grid-line-pattern: '';
|
3750
|
+
-GtkTreeView-tree-line-width: 1;
|
3751
|
+
-GtkTreeView-tree-line-pattern: '';
|
3752
|
+
-GtkTreeView-expander-size: 16;
|
3753
|
+
border-left-color: #535760;
|
3754
|
+
border-top-color: transparent; }
|
3755
|
+
treeview.view:selected {
|
3756
|
+
border-radius: 0; }
|
3757
|
+
treeview.view:selected {
|
3758
|
+
background-color: #5191e0;
|
3759
|
+
border-left-color: #eff1f5;
|
3760
|
+
border-top-color: #eff1f5; }
|
3761
|
+
treeview.view:backdrop:selected {
|
3762
|
+
background-color: rgba(81, 145, 224, 0.5);
|
3763
|
+
border-left-color: #eff1f5;
|
3764
|
+
border-top-color: #eff1f5; }
|
3765
|
+
treeview.view:disabled {
|
3766
|
+
color: rgba(75, 79, 87, 0.35); }
|
3767
|
+
treeview.view:disabled:selected {
|
3768
|
+
color: rgba(212, 217, 228, 0.35); }
|
3769
|
+
treeview.view:disabled:selected:backdrop {
|
3770
|
+
color: rgba(212, 217, 228, 0.35); }
|
3771
|
+
treeview.view:disabled:backdrop {
|
3772
|
+
color: rgba(75, 79, 87, 0.35); }
|
3773
|
+
treeview.view.separator {
|
3774
|
+
min-height: 2px;
|
3775
|
+
color: #535760; }
|
3776
|
+
treeview.view.separator:backdrop {
|
3777
|
+
color: #535760; }
|
3778
|
+
treeview.view:backdrop {
|
3779
|
+
border-left-color: #535760; }
|
3780
|
+
treeview.view:drop(active) {
|
3781
|
+
border-style: solid none;
|
3782
|
+
border-width: 1px;
|
3783
|
+
border-color: #5191e0; }
|
3784
|
+
treeview.view.expander {
|
3785
|
+
min-width: 16px;
|
3786
|
+
min-height: 16px;
|
3787
|
+
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
|
3788
|
+
color: #d3d8e5; }
|
3789
|
+
treeview.view.expander:dir(rtl) {
|
3790
|
+
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
|
3791
|
+
treeview.view.expander:hover {
|
3792
|
+
color: #5191e0; }
|
3793
|
+
treeview.view.expander:selected {
|
3794
|
+
color: #eff1f5; }
|
3795
|
+
treeview.view.expander:checked {
|
3796
|
+
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
3797
|
+
treeview.view.expander:checked:selected {
|
3798
|
+
color: #eff1f5; }
|
3799
|
+
treeview.view.expander:checked:backdrop {
|
3800
|
+
color: #3d424c; }
|
3801
|
+
treeview.view.expander:backdrop {
|
3802
|
+
color: #3d424c; }
|
3803
|
+
treeview.view header {
|
3804
|
+
color: #d3d8e5;
|
3805
|
+
background-image: none;
|
3806
|
+
background-color: #404754;
|
3807
|
+
text-shadow: none;
|
3808
|
+
box-shadow: none;
|
3809
|
+
}
|
3810
|
+
treeview.view header button {
|
3811
|
+
color: #d3d8e5;
|
3812
|
+
background-color: #404754;
|
3813
|
+
text-shadow: none;
|
3814
|
+
box-shadow: none; }
|
3815
|
+
treeview.view header button:hover {
|
3816
|
+
color: #d3d8e5;
|
3817
|
+
background-color: rgba(81, 145, 224, 0.5);
|
3818
|
+
box-shadow: none;
|
3819
|
+
transition: none; }
|
3820
|
+
treeview.view header button:active {
|
3821
|
+
color: #d3d8e5;
|
3822
|
+
background-color: rgba(81, 145, 224, 0.5);
|
3823
|
+
transition: none; }
|
3824
|
+
treeview.view header button:last-child:backdrop, treeview.view header button:last-child {
|
3825
|
+
border-right-style: none; }
|
3826
|
+
treeview.view button.dnd:active, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd,
|
3827
|
+
treeview.view header.button.dnd:active,
|
3828
|
+
treeview.view header.button.dnd:selected,
|
3829
|
+
treeview.view header.button.dnd:hover,
|
3830
|
+
treeview.view header.button.dnd {
|
3831
|
+
padding: 0 6px;
|
3832
|
+
color: #eff1f5;
|
3833
|
+
background-image: none;
|
3834
|
+
background-color: #5191e0;
|
3835
|
+
border-style: none;
|
3836
|
+
border-radius: 0;
|
3837
|
+
box-shadow: none;
|
3838
|
+
text-shadow: none;
|
3839
|
+
transition: none; }
|
3840
|
+
|
3841
|
+
treeview.view header button, treeview.view header button:hover, treeview.view header button:active {
|
3842
|
+
padding: 6px;
|
3843
|
+
border-style: none solid solid none;
|
3844
|
+
border-radius: 0;
|
3845
|
+
background-image: none;
|
3846
|
+
border-color: #535760;
|
3847
|
+
text-shadow: none; }
|
3848
|
+
treeview.view header button:disabled {
|
3849
|
+
border-color: rgba(75, 79, 87, 0.35);
|
3850
|
+
color: rgba(186, 194, 214, 0.35);
|
3851
|
+
background-color: rgba(58, 65, 76, 0.35);
|
3852
|
+
background-image: none; }
|
3853
|
+
treeview.view header button:backdrop {
|
3854
|
+
border-color: #535760;
|
3855
|
+
border-style: none solid solid none;
|
3856
|
+
color: #d3d8e5;
|
3857
|
+
background-image: none;
|
3858
|
+
background-color: #404754; }
|
3859
|
+
treeview.view header button:backdrop:disabled {
|
3860
|
+
border-color: rgba(75, 79, 87, 0.35);
|
3861
|
+
background-image: none;
|
3862
|
+
background-color: rgba(58, 65, 76, 0.35);
|
3863
|
+
color: rgba(186, 194, 214, 0.35); }
|
3864
|
+
|
3865
|
+
/**********************
|
3866
|
+
* Window Decorations *
|
3867
|
+
*********************/
|
3868
|
+
decoration {
|
3869
|
+
border-radius: 3px 3px 0 0;
|
3870
|
+
border-width: 0px;
|
3871
|
+
box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.5);
|
3872
|
+
/* this is used for the resize cursor area */
|
3873
|
+
margin: 10px; }
|
3874
|
+
.maximized decoration,
|
3875
|
+
.fullscreen decoration,
|
3876
|
+
.tiled decoration {
|
3877
|
+
border-radius: 0; }
|
3878
|
+
.popup decoration {
|
3879
|
+
border-radius: 3px;
|
3880
|
+
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1); }
|
3881
|
+
.ssd decoration {
|
3882
|
+
box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.1); }
|
3883
|
+
.csd decoration {
|
3884
|
+
border-radius: 3px; }
|
3885
|
+
.csd decoration.popup {
|
3886
|
+
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1); }
|
3887
|
+
.csd decoration.tooltip {
|
3888
|
+
box-shadow: none; }
|
3889
|
+
.csd decoration.message-dialog {
|
3890
|
+
box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.5); }
|
3891
|
+
.solid-csd decoration {
|
3892
|
+
border-radius: 0;
|
3893
|
+
margin: 0;
|
3894
|
+
padding: 1px;
|
3895
|
+
border: none;
|
3896
|
+
background-color: #282c34;
|
3897
|
+
box-shadow: none; }
|
3898
|
+
|
3899
|
+
headerbar.default-decoration button.titlebutton,
|
3900
|
+
.titlebar.default-decoration button.titlebutton {
|
3901
|
+
padding: 1px;
|
3902
|
+
min-height: 18px;
|
3903
|
+
min-width: 18px;
|
3904
|
+
margin: 0; }
|
3905
|
+
|
3906
|
+
headerbar button.titlebutton,
|
3907
|
+
.titlebar button.titlebutton {
|
3908
|
+
padding: 1px; }
|
3909
|
+
headerbar button.titlebutton:hover, headerbar button.titlebutton:active, headerbar button.titlebutton:checked, headerbar button.titlebutton:backdrop, headerbar button.titlebutton:active:hover,
|
3910
|
+
.titlebar button.titlebutton:hover,
|
3911
|
+
.titlebar button.titlebutton:active,
|
3912
|
+
.titlebar button.titlebutton:checked,
|
3913
|
+
.titlebar button.titlebutton:backdrop,
|
3914
|
+
.titlebar button.titlebutton:active:hover {
|
3915
|
+
transition: none; }
|
3916
|
+
headerbar button.titlebutton.close,
|
3917
|
+
.titlebar button.titlebutton.close {
|
3918
|
+
padding: 1px;
|
3919
|
+
color: transparent;
|
3920
|
+
border-image: none;
|
3921
|
+
box-shadow: none;
|
3922
|
+
background-position: center;
|
3923
|
+
background-repeat: no-repeat;
|
3924
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-close.png"), url("../assets/titlebutton-close@2.png")); }
|
3925
|
+
headerbar button.titlebutton.close:hover,
|
3926
|
+
.titlebar button.titlebutton.close:hover {
|
3927
|
+
border-color: transparent;
|
3928
|
+
background-color: transparent;
|
3929
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-close-hover.png"), url("../assets/titlebutton-close-hover@2.png")); }
|
3930
|
+
headerbar button.titlebutton.close:active,
|
3931
|
+
.titlebar button.titlebutton.close:active {
|
3932
|
+
border-color: transparent;
|
3933
|
+
background-color: transparent;
|
3934
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-close-active.png"), url("../assets/titlebutton-close-active@2.png")); }
|
3935
|
+
headerbar button.titlebutton.close:backdrop,
|
3936
|
+
.titlebar button.titlebutton.close:backdrop {
|
3937
|
+
border-color: transparent;
|
3938
|
+
background-color: transparent;
|
3939
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-close-backdrop.png"), url("../assets/titlebutton-close-backdrop@2.png")); }
|
3940
|
+
headerbar button.titlebutton.maximize,
|
3941
|
+
.titlebar button.titlebutton.maximize {
|
3942
|
+
padding: 1px;
|
3943
|
+
color: transparent;
|
3944
|
+
border-image: none;
|
3945
|
+
box-shadow: none;
|
3946
|
+
background-position: center;
|
3947
|
+
background-repeat: no-repeat;
|
3948
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize.png"), url("../assets/titlebutton-maximize@2.png")); }
|
3949
|
+
headerbar button.titlebutton.maximize:hover,
|
3950
|
+
.titlebar button.titlebutton.maximize:hover {
|
3951
|
+
border-color: transparent;
|
3952
|
+
background-color: transparent;
|
3953
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize-hover.png"), url("../assets/titlebutton-maximize-hover@2.png")); }
|
3954
|
+
headerbar button.titlebutton.maximize:active,
|
3955
|
+
.titlebar button.titlebutton.maximize:active {
|
3956
|
+
border-color: transparent;
|
3957
|
+
background-color: transparent;
|
3958
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize-active.png"), url("../assets/titlebutton-maximize-active@2.png")); }
|
3959
|
+
headerbar button.titlebutton.maximize:backdrop,
|
3960
|
+
.titlebar button.titlebutton.maximize:backdrop {
|
3961
|
+
border-color: transparent;
|
3962
|
+
background-color: transparent;
|
3963
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize-backdrop.png"), url("../assets/titlebutton-maximize-backdrop@2.png")); }
|
3964
|
+
headerbar button.titlebutton.minimize,
|
3965
|
+
.titlebar button.titlebutton.minimize {
|
3966
|
+
padding: 1px;
|
3967
|
+
color: transparent;
|
3968
|
+
border-image: none;
|
3969
|
+
box-shadow: none;
|
3970
|
+
background-position: center;
|
3971
|
+
background-repeat: no-repeat;
|
3972
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-minimize.png"), url("../assets/titlebutton-minimize@2.png")); }
|
3973
|
+
headerbar button.titlebutton.minimize:hover,
|
3974
|
+
.titlebar button.titlebutton.minimize:hover {
|
3975
|
+
border-color: transparent;
|
3976
|
+
background-color: transparent;
|
3977
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-minimize-hover.png"), url("../assets/titlebutton-minimize-hover@2.png")); }
|
3978
|
+
headerbar button.titlebutton.minimize:active,
|
3979
|
+
.titlebar button.titlebutton.minimize:active {
|
3980
|
+
border-color: transparent;
|
3981
|
+
background-color: transparent;
|
3982
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-minimize-active.png"), url("../assets/titlebutton-minimize-active@2.png")); }
|
3983
|
+
headerbar button.titlebutton.minimize:backdrop,
|
3984
|
+
.titlebar button.titlebutton.minimize:backdrop {
|
3985
|
+
border-color: transparent;
|
3986
|
+
background-color: transparent;
|
3987
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-minimize-backdrop.png"), url("../assets/titlebutton-minimize-backdrop@2.png")); }
|
3988
|
+
|
3989
|
+
.maximized headerbar button.titlebutton.maximize, .maximized
|
3990
|
+
.titlebar button.titlebutton.maximize {
|
3991
|
+
padding: 1px;
|
3992
|
+
color: transparent;
|
3993
|
+
border-image: none;
|
3994
|
+
box-shadow: none;
|
3995
|
+
background-position: center;
|
3996
|
+
background-repeat: no-repeat;
|
3997
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize-maximized.png"), url("../assets/titlebutton-maximize-maximized@2.png")); }
|
3998
|
+
|
3999
|
+
.maximized headerbar button.titlebutton.maximize:hover, .maximized
|
4000
|
+
.titlebar button.titlebutton.maximize:hover {
|
4001
|
+
border-color: transparent;
|
4002
|
+
background-color: transparent;
|
4003
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize-maximized-hover.png"), url("../assets/titlebutton-maximize-maximized-hover@2.png")); }
|
4004
|
+
|
4005
|
+
.maximized headerbar button.titlebutton.maximize:active, .maximized
|
4006
|
+
.titlebar button.titlebutton.maximize:active {
|
4007
|
+
border-color: transparent;
|
4008
|
+
background-color: transparent;
|
4009
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize-maximized-active.png"), url("../assets/titlebutton-maximize-maximized-active@2.png")); }
|
4010
|
+
|
4011
|
+
.maximized headerbar button.titlebutton.maximize:backdrop, .maximized
|
4012
|
+
.titlebar button.titlebutton.maximize:backdrop {
|
4013
|
+
border-color: transparent;
|
4014
|
+
background-color: transparent;
|
4015
|
+
background-image: -gtk-scaled(url("../assets/titlebutton-maximize-maximized-backdrop.png"), url("../assets/titlebutton-maximize-maximized-backdrop@2.png")); }
|
4016
|
+
|
4017
|
+
headerbar.selection-mode button.titlebutton,
|
4018
|
+
.titlebar.selection-mode button.titlebutton {
|
4019
|
+
text-shadow: none; }
|
4020
|
+
headerbar.selection-mode button.titlebutton:backdrop,
|
4021
|
+
.titlebar.selection-mode button.titlebutton:backdrop {
|
4022
|
+
-gtk-icon-shadow: none; }
|