A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 gtk-light-compact.css

View raw Download
text/plain • 142.0 kiB
ASCII text, with very long lines (677)
        
            
1
@keyframes ripple_effect {
2
to {
3
background-size: 1000% 1000%;
4
}
5
}
6
7
@keyframes header_ripple_effect {
8
from {
9
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 0%, transparent 0%);
10
}
11
to {
12
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 100%, transparent 0%);
13
}
14
}
15
16
* {
17
background-clip: padding-box;
18
-GtkToolButton-icon-spacing: 0;
19
-GtkTextView-error-underline-color: #DD2C00;
20
-GtkScrolledWindow-scrollbar-spacing: 0;
21
-GtkToolItemGroup-expander-size: 11;
22
-GtkWidget-text-handle-width: 24;
23
-GtkWidget-text-handle-height: 24;
24
-GtkDialog-button-spacing: 4;
25
-GtkDialog-action-area-border: 0;
26
outline-style: solid;
27
outline-width: 2px;
28
outline-color: transparent;
29
outline-offset: -4px;
30
-gtk-outline-radius: 2px;
31
-gtk-secondary-caret-color: #42A5F5;
32
}
33
34
switch:focus slider,
35
notebook:focus tab,
36
*:focus {
37
outline-color: alpha(currentColor, 0.3);
38
}
39
40
/***************
41
* Base States *
42
***************/
43
.background {
44
background-color: #F5F5F5;
45
color: rgba(0, 0, 0, 0.87);
46
}
47
48
/*
49
These wildcard seems unavoidable, need to investigate.
50
Wildcards are bad and troublesome, use them with care,
51
or better, just don't.
52
Everytime a wildcard is used a kitten dies, painfully.
53
*/
54
*:disabled {
55
-gtk-icon-effect: dim;
56
}
57
58
.gtkstyle-fallback {
59
background-color: #F5F5F5;
60
color: rgba(0, 0, 0, 0.87);
61
}
62
63
.gtkstyle-fallback:hover {
64
background-color: #e8e8e8;
65
color: rgba(0, 0, 0, 0.87);
66
}
67
68
.gtkstyle-fallback:active {
69
background-color: gainsboro;
70
color: rgba(0, 0, 0, 0.87);
71
}
72
73
.gtkstyle-fallback:disabled {
74
background-color: #F5F5F5;
75
color: rgba(0, 0, 0, 0.38);
76
}
77
78
.gtkstyle-fallback:selected {
79
background-color: #42A5F5;
80
color: #FFFFFF;
81
}
82
83
.view {
84
background-color: #FFFFFF;
85
color: rgba(0, 0, 0, 0.87);
86
}
87
88
.view:disabled {
89
color: rgba(0, 0, 0, 0.38);
90
}
91
92
.view:hover, .view:active, .view:selected {
93
border-radius: 2px;
94
}
95
96
textview text {
97
background-color: #FFFFFF;
98
}
99
100
textview border {
101
background-color: #FAFAFA;
102
color: rgba(0, 0, 0, 0.38);
103
}
104
105
.rubberband,
106
rubberband,
107
flowbox rubberband,
108
treeview.view rubberband,
109
.content-view rubberband,
110
.content-view .rubberband {
111
border: 1px solid #40C4FF;
112
background-color: rgba(64, 196, 255, 0.3);
113
}
114
115
flowbox flowboxchild {
116
padding: 4px;
117
border-radius: 2px;
118
}
119
120
.content-view .tile:selected {
121
background-color: transparent;
122
color: inherit;
123
}
124
125
label {
126
caret-color: currentColor;
127
}
128
129
label.separator {
130
color: rgba(0, 0, 0, 0.87);
131
}
132
133
label selection {
134
background-color: #42A5F5;
135
color: #FFFFFF;
136
}
137
138
label:disabled {
139
color: rgba(0, 0, 0, 0.38);
140
}
141
142
tab label:disabled,
143
button label:disabled {
144
color: inherit;
145
}
146
147
.dim-label, label.separator, .titlebar:not(headerbar) .subtitle,
148
headerbar .subtitle, .budgie-notification .notification-body, .budgie-switcher .notification-body {
149
opacity: 0.6;
150
}
151
152
assistant .sidebar {
153
padding: 4px 0;
154
}
155
156
assistant .sidebar label {
157
min-height: 32px;
158
padding: 0 12px;
159
color: rgba(0, 0, 0, 0.38);
160
font-weight: 500;
161
}
162
163
assistant .sidebar label.highlight {
164
color: rgba(0, 0, 0, 0.87);
165
}
166
167
popover.background.touch-selection, popover.background.magnifier, popover.background.osd, .app-notification, .osd .scale-popup, .nautilus-window .floating-bar, .osd {
168
opacity: 0.9;
169
}
170
171
/*********************
172
* Spinner Animation *
173
*********************/
174
@keyframes spin {
175
to {
176
-gtk-icon-transform: rotate(1turn);
177
}
178
}
179
180
spinner {
181
background: none;
182
opacity: 0;
183
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
184
}
185
186
spinner:checked {
187
opacity: 1;
188
animation: spin 1s linear infinite;
189
}
190
191
spinner:checked:disabled {
192
opacity: 0.5;
193
}
194
195
/****************
196
* Text Entries *
197
****************/
198
spinbutton:not(.vertical),
199
entry {
200
min-height: 32px;
201
padding: 0 8px;
202
border-radius: 2px;
203
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
204
border-image: none;
205
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
206
background-color: #FFFFFF;
207
color: rgba(0, 0, 0, 0.87);
208
}
209
210
spinbutton:focus:not(.vertical),
211
entry:focus {
212
border-image: none;
213
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
214
}
215
216
spinbutton:disabled:not(.vertical),
217
entry:disabled {
218
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
219
background-color: #FAFAFA;
220
color: rgba(0, 0, 0, 0.38);
221
}
222
223
spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) entry:not(.search),
224
notebook > stack:not(:only-child) spinbutton:not(.vertical), messagedialog entry, colorchooser .popover.osd spinbutton:not(.vertical), entry.preferences-search, layoutpane entry.search, editortweak entry.search, .raven .raven-background spinbutton:not(.vertical), #login_window entry,
225
entry.flat {
226
border-radius: 0;
227
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
228
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
229
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.26);
230
background-color: transparent;
231
color: rgba(0, 0, 0, 0.87);
232
}
233
234
spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry:focus:not(.search),
235
notebook > stack:not(:only-child) spinbutton:focus:not(.vertical), messagedialog entry:focus, colorchooser .popover.osd spinbutton:focus:not(.vertical), entry.preferences-search:focus, layoutpane entry.search:focus, editortweak entry.search:focus, .raven .raven-background spinbutton:focus:not(.vertical), #login_window entry:focus,
236
entry.flat:focus {
237
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px;
238
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.26);
239
}
240
241
spinbutton.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry:disabled:not(.search),
242
notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), messagedialog entry:disabled, colorchooser .popover.osd spinbutton:disabled:not(.vertical), entry.preferences-search:disabled, layoutpane entry.search:disabled, editortweak entry.search:disabled, .raven .raven-background spinbutton:disabled:not(.vertical), #login_window entry:disabled,
243
entry.flat:disabled {
244
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.12);
245
background-color: transparent;
246
color: rgba(0, 0, 0, 0.38);
247
}
248
249
spinbutton:not(.vertical) image,
250
entry image {
251
color: rgba(0, 0, 0, 0.54);
252
}
253
254
spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active,
255
entry image:hover,
256
entry image:active {
257
color: rgba(0, 0, 0, 0.87);
258
}
259
260
spinbutton:not(.vertical) image:disabled,
261
entry image:disabled {
262
color: rgba(0, 0, 0, 0.38);
263
}
264
265
spinbutton:not(.vertical) image.left,
266
entry image.left {
267
margin-left: 0px;
268
margin-right: 6px;
269
}
270
271
spinbutton:not(.vertical) image.right,
272
entry image.right {
273
margin-left: 6px;
274
margin-right: 0px;
275
}
276
277
spinbutton:not(.vertical) undershoot.left,
278
entry undershoot.left {
279
background-color: transparent;
280
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.26) 50%);
281
padding-left: 1px;
282
background-size: 1px 12px;
283
background-repeat: repeat-y;
284
background-origin: content-box;
285
background-position: left top;
286
}
287
288
spinbutton:not(.vertical) undershoot.right,
289
entry undershoot.right {
290
background-color: transparent;
291
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.26) 50%);
292
padding-right: 1px;
293
background-size: 1px 12px;
294
background-repeat: repeat-y;
295
background-origin: content-box;
296
background-position: right top;
297
}
298
299
spinbutton.error:not(.vertical),
300
entry.error {
301
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
302
border-image: none;
303
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
304
background-color: #DD2C00;
305
color: #FFFFFF;
306
}
307
308
spinbutton.error:focus:not(.vertical),
309
entry.error:focus {
310
border-image: none;
311
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
312
}
313
314
spinbutton.error:disabled:not(.vertical),
315
entry.error:disabled {
316
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
317
background-color: #FAFAFA;
318
color: rgba(0, 0, 0, 0.38);
319
}
320
321
spinbutton.error.flat:not(.vertical), notebook > stack:not(:only-child) entry.error:not(.search),
322
notebook > stack:not(:only-child) spinbutton.error:not(.vertical), messagedialog entry.error, colorchooser .popover.osd spinbutton.error:not(.vertical), entry.error.preferences-search, layoutpane entry.error.search, editortweak entry.error.search, .raven .raven-background spinbutton.error:not(.vertical), #login_window entry.error,
323
entry.error.flat {
324
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
325
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 0%, transparent 0%) 0 0 0/0 0 0px;
326
box-shadow: inset 0 -1px #DD2C00;
327
background-color: transparent;
328
color: rgba(0, 0, 0, 0.87);
329
}
330
331
spinbutton.error.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.error:focus:not(.search),
332
notebook > stack:not(:only-child) spinbutton.error:focus:not(.vertical), messagedialog entry.error:focus, colorchooser .popover.osd spinbutton.error:focus:not(.vertical), entry.error.preferences-search:focus, layoutpane entry.error.search:focus, editortweak entry.error.search:focus, .raven .raven-background spinbutton.error:focus:not(.vertical), #login_window entry.error:focus,
333
entry.error.flat:focus {
334
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 100%, transparent 0%) 0 0 2/0 0 2px;
335
box-shadow: inset 0 -1px #DD2C00;
336
}
337
338
spinbutton.error.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.error:disabled:not(.search),
339
notebook > stack:not(:only-child) spinbutton.error:disabled:not(.vertical), messagedialog entry.error:disabled, colorchooser .popover.osd spinbutton.error:disabled:not(.vertical), entry.error.preferences-search:disabled, layoutpane entry.error.search:disabled, editortweak entry.error.search:disabled, .raven .raven-background spinbutton.error:disabled:not(.vertical), #login_window entry.error:disabled,
340
entry.error.flat:disabled {
341
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.12);
342
background-color: transparent;
343
color: rgba(0, 0, 0, 0.38);
344
}
345
346
spinbutton.error:not(.vertical) image,
347
entry.error image {
348
color: rgba(255, 255, 255, 0.7);
349
}
350
351
spinbutton.error:not(.vertical) image:hover, spinbutton.error:not(.vertical) image:active,
352
entry.error image:hover,
353
entry.error image:active {
354
color: #FFFFFF;
355
}
356
357
spinbutton.error:not(.vertical) image:disabled,
358
entry.error image:disabled {
359
color: rgba(255, 255, 255, 0.5);
360
}
361
362
spinbutton.warning:not(.vertical),
363
entry.warning {
364
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
365
border-image: none;
366
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
367
background-color: #FF6D00;
368
color: #FFFFFF;
369
}
370
371
spinbutton.warning:focus:not(.vertical),
372
entry.warning:focus {
373
border-image: none;
374
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
375
}
376
377
spinbutton.warning:disabled:not(.vertical),
378
entry.warning:disabled {
379
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
380
background-color: #FAFAFA;
381
color: rgba(0, 0, 0, 0.38);
382
}
383
384
spinbutton.warning.flat:not(.vertical), notebook > stack:not(:only-child) entry.warning:not(.search),
385
notebook > stack:not(:only-child) spinbutton.warning:not(.vertical), messagedialog entry.warning, colorchooser .popover.osd spinbutton.warning:not(.vertical), entry.warning.preferences-search, layoutpane entry.warning.search, editortweak entry.warning.search, .raven .raven-background spinbutton.warning:not(.vertical), #login_window entry.warning,
386
entry.warning.flat {
387
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
388
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 0%, transparent 0%) 0 0 0/0 0 0px;
389
box-shadow: inset 0 -1px #FF6D00;
390
background-color: transparent;
391
color: rgba(0, 0, 0, 0.87);
392
}
393
394
spinbutton.warning.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.warning:focus:not(.search),
395
notebook > stack:not(:only-child) spinbutton.warning:focus:not(.vertical), messagedialog entry.warning:focus, colorchooser .popover.osd spinbutton.warning:focus:not(.vertical), entry.warning.preferences-search:focus, layoutpane entry.warning.search:focus, editortweak entry.warning.search:focus, .raven .raven-background spinbutton.warning:focus:not(.vertical), #login_window entry.warning:focus,
396
entry.warning.flat:focus {
397
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 100%, transparent 0%) 0 0 2/0 0 2px;
398
box-shadow: inset 0 -1px #FF6D00;
399
}
400
401
spinbutton.warning.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.warning:disabled:not(.search),
402
notebook > stack:not(:only-child) spinbutton.warning:disabled:not(.vertical), messagedialog entry.warning:disabled, colorchooser .popover.osd spinbutton.warning:disabled:not(.vertical), entry.warning.preferences-search:disabled, layoutpane entry.warning.search:disabled, editortweak entry.warning.search:disabled, .raven .raven-background spinbutton.warning:disabled:not(.vertical), #login_window entry.warning:disabled,
403
entry.warning.flat:disabled {
404
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.12);
405
background-color: transparent;
406
color: rgba(0, 0, 0, 0.38);
407
}
408
409
spinbutton.warning:not(.vertical) image,
410
entry.warning image {
411
color: rgba(255, 255, 255, 0.7);
412
}
413
414
spinbutton.warning:not(.vertical) image:hover, spinbutton.warning:not(.vertical) image:active,
415
entry.warning image:hover,
416
entry.warning image:active {
417
color: #FFFFFF;
418
}
419
420
spinbutton.warning:not(.vertical) image:disabled,
421
entry.warning image:disabled {
422
color: rgba(255, 255, 255, 0.5);
423
}
424
425
spinbutton:not(.vertical) progress,
426
entry progress {
427
margin: 2px -6px;
428
border-bottom: 2px solid #42A5F5;
429
background-color: transparent;
430
}
431
432
.linked:not(.vertical) > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked:not(.vertical) > entry:not(.search),
433
notebook > stack:not(:only-child) .linked:not(.vertical) > spinbutton:not(.vertical), messagedialog .linked:not(.vertical) > entry, colorchooser .popover.osd .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry.preferences-search, layoutpane .linked:not(.vertical) > entry.search, editortweak .linked:not(.vertical) > entry.search, .raven .raven-background .linked:not(.vertical) > spinbutton:not(.vertical), #login_window .linked:not(.vertical) > entry,
434
.linked.vertical > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child)
435
.linked.vertical > entry:not(.search),
436
notebook > stack:not(:only-child)
437
.linked.vertical > spinbutton:not(.vertical), messagedialog
438
.linked.vertical > entry, colorchooser .popover.osd
439
.linked.vertical > spinbutton:not(.vertical),
440
.linked.vertical > entry.preferences-search, layoutpane
441
.linked.vertical > entry.search, editortweak
442
.linked.vertical > entry.search, .raven .raven-background
443
.linked.vertical > spinbutton:not(.vertical), #login_window
444
.linked.vertical > entry, .linked:not(.vertical) >
445
entry.flat,
446
.linked.vertical >
447
entry.flat {
448
border-radius: 0;
449
}
450
451
treeview entry.flat, treeview entry {
452
min-height: 0;
453
padding: 2px;
454
border-radius: 0;
455
background-color: #FFFFFF;
456
}
457
458
treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus {
459
border-image: none;
460
box-shadow: none;
461
}
462
463
.entry-tag, .documents-entry-tag, .photos-entry-tag {
464
margin: 4px;
465
border-radius: 9999px;
466
box-shadow: none;
467
background-color: #42A5F5;
468
color: #FFFFFF;
469
}
470
471
.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover {
472
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
473
}
474
475
:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag {
476
margin-left: 8px;
477
margin-right: -4px;
478
padding-left: 8px;
479
padding-right: 4px;
480
}
481
482
:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag {
483
margin-left: -4px;
484
margin-right: 8px;
485
padding-left: 4px;
486
padding-right: 8px;
487
}
488
489
.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag {
490
box-shadow: none;
491
background-color: transparent;
492
}
493
494
.entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) {
495
color: rgba(255, 255, 255, 0.7);
496
}
497
498
/***********
499
* Buttons *
500
***********/
501
@keyframes needs_attention {
502
from {
503
background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent));
504
}
505
to {
506
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#FF4081), to(transparent));
507
}
508
}
509
510
511
button {
512
min-height: 24px;
513
min-width: 16px;
514
padding: 4px 8px;
515
border-radius: 2px;
516
font-weight: 500;
517
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1), background-size 0.5s cubic-bezier(0, 0, 0.2, 1), background-image 1s cubic-bezier(0, 0, 0.2, 1);
518
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 9999px transparent;
519
background-color: #FAFAFA;
520
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
521
background-repeat: no-repeat;
522
background-position: center;
523
background-size: 1000% 1000%;
524
color: rgba(0, 0, 0, 0.62);
525
}
526
527
528
button:hover {
529
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px transparent;
530
color: rgba(0, 0, 0, 0.87);
531
}
532
533
534
button:active {
535
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
536
animation: ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
537
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px alpha(currentColor, 0.15);
538
background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%);
539
background-size: 0% 0%;
540
color: rgba(0, 0, 0, 0.87);
541
}
542
543
544
button:disabled {
545
box-shadow: none;
546
background-color: rgba(0, 0, 0, 0.12);
547
color: rgba(0, 0, 0, 0.26);
548
}
549
550
551
button:checked {
552
background-color: #42A5F5;
553
color: #FFFFFF;
554
}
555
556
557
button:checked:disabled {
558
background-color: rgba(66, 165, 245, 0.3);
559
color: rgba(66, 165, 245, 0.5);
560
}
561
562
modelbutton.flat,
563
.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, popover.background.menu button,
564
popover.background button.model, notebook > header > tabs > arrow, scrollbar button, check,
565
radio, calendar.button, messagedialog.csd .dialog-action-area button, button.sidebar-button, .gedit-search-slider button, popover.messagepopover .popover-action-area button, PanelToplevel > widget > button, .raven .raven-header:not(.top) button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, .lightdm-gtk-greeter button, :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar)
566
.path-bar button, layouttabbar button, .mate-panel-menu-bar #PanelApplet button:not(.flat), .budgie-panel #tasklist-button, .raven stackswitcher.linked > button, toolbar button, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
567
headerbar button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button,
568
button.flat {
569
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0.5s cubic-bezier(0, 0, 0.2, 1), background-image 1s cubic-bezier(0, 0, 0.2, 1);
570
box-shadow: inset 0 0 0 9999px transparent;
571
background-color: transparent;
572
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
573
background-repeat: no-repeat;
574
background-position: center;
575
background-size: 1000% 1000%;
576
color: rgba(0, 0, 0, 0.54);
577
}
578
579
modelbutton.flat:hover,
580
.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, spinbutton.vertical button:hover, popover.background.menu button:hover,
581
popover.background button.model:hover, notebook > header > tabs > arrow:hover, scrollbar button:hover, check:hover,
582
radio:hover, calendar.button:hover, messagedialog.csd .dialog-action-area button:hover, button.sidebar-button:hover, .gedit-search-slider button:hover, popover.messagepopover .popover-action-area button:hover, PanelToplevel > widget > button:hover, .raven .raven-header:not(.top) button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, .lightdm-gtk-greeter button:hover, :not(headerbar) .caja-pathbar button:hover, .caja-pathbar :not(headerbar) button:hover, :not(headerbar)
583
.path-bar button:hover, layouttabbar button:hover, .mate-panel-menu-bar #PanelApplet button:hover:not(.flat), .budgie-panel #tasklist-button:hover, .raven stackswitcher.linked > button:hover, toolbar button:hover, .titlebar:not(headerbar) button:hover:not(.suggested-action):not(.destructive-action),
584
headerbar button:hover:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:hover,
585
button.flat:hover {
586
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15);
587
color: rgba(0, 0, 0, 0.87);
588
}
589
590
modelbutton.flat:active,
591
.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, popover.background.menu button:active,
592
popover.background button.model:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active,
593
radio:active, calendar.button:active, messagedialog.csd .dialog-action-area button:active, button.sidebar-button:active, .gedit-search-slider button:active, popover.messagepopover .popover-action-area button:active, PanelToplevel > widget > button:active, .raven .raven-header:not(.top) button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, .lightdm-gtk-greeter button:active, :not(headerbar) .caja-pathbar button:active, .caja-pathbar :not(headerbar) button:active, :not(headerbar)
594
.path-bar button:active, layouttabbar button:active, .mate-panel-menu-bar #PanelApplet button:active:not(.flat), .budgie-panel #tasklist-button:active, .raven stackswitcher.linked > button:active, toolbar button:active, .titlebar:not(headerbar) button:active:not(.suggested-action):not(.destructive-action),
595
headerbar button:active:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:active,
596
button.flat:active {
597
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
598
animation: ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
599
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15);
600
background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%);
601
background-size: 0% 0%;
602
color: rgba(0, 0, 0, 0.87);
603
}
604
605
modelbutton.flat:disabled,
606
.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, popover.background.menu button:disabled,
607
popover.background button.model:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled,
608
radio:disabled, calendar.button:disabled, messagedialog.csd .dialog-action-area button:disabled, button.sidebar-button:disabled, .gedit-search-slider button:disabled, popover.messagepopover .popover-action-area button:disabled, PanelToplevel > widget > button:disabled, .raven .raven-header:not(.top) button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, .lightdm-gtk-greeter button:disabled, :not(headerbar) .caja-pathbar button:disabled, .caja-pathbar :not(headerbar) button:disabled, :not(headerbar)
609
.path-bar button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar #PanelApplet button:disabled:not(.flat), .budgie-panel #tasklist-button:disabled, .raven stackswitcher.linked > button:disabled, toolbar button:disabled, .titlebar:not(headerbar) button:disabled:not(.suggested-action):not(.destructive-action),
610
headerbar button:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:disabled,
611
button.flat:disabled {
612
box-shadow: none;
613
background-color: transparent;
614
color: rgba(0, 0, 0, 0.26);
615
}
616
617
:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar)
618
.path-bar button:checked, layouttabbar button:checked, .mate-panel-menu-bar #PanelApplet button:checked:not(.flat), .budgie-panel #tasklist-button:checked, .raven stackswitcher.linked > button:checked, toolbar button:checked, .titlebar:not(headerbar) button:checked:not(.suggested-action):not(.destructive-action),
619
headerbar button:checked:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked,
620
button.flat:checked {
621
background-color: rgba(0, 0, 0, 0.26);
622
color: rgba(0, 0, 0, 0.87);
623
}
624
625
:not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar)
626
.path-bar button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar #PanelApplet button:checked:disabled:not(.flat), .budgie-panel #tasklist-button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, toolbar button:checked:disabled, .titlebar:not(headerbar) button:checked:disabled:not(.suggested-action):not(.destructive-action),
627
headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked:disabled,
628
button.flat:checked:disabled {
629
background-color: rgba(0, 0, 0, 0.12);
630
color: rgba(0, 0, 0, 0.38);
631
}
632
633
634
button.text-button {
635
padding-left: 16px;
636
padding-right: 16px;
637
}
638
639
640
button.image-button {
641
min-width: 24px;
642
padding: 4px;
643
}
644
645
646
button.text-button.image-button {
647
border-radius: 2px;
648
-gtk-outline-radius: 2px;
649
}
650
651
652
button.text-button.image-button label:first-child {
653
margin-left: 12px;
654
}
655
656
657
button.text-button.image-button label:last-child {
658
margin-right: 12px;
659
}
660
661
662
button.text-button.image-button image:not(:only-child) {
663
margin: 0 4px;
664
}
665
666
toolbar .linked > button, .titlebar:not(headerbar) .linked > button:not(.suggested-action):not(.destructive-action),
667
headerbar .linked > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button, toolbar
668
.linked.vertical > button, .titlebar:not(headerbar)
669
.linked.vertical > button:not(.suggested-action):not(.destructive-action),
670
headerbar
671
.linked.vertical > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box
672
.linked.vertical > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification
673
.linked.vertical > button, .linked >
674
button.flat,
675
.linked.vertical >
676
button.flat {
677
border-radius: 2px;
678
}
679
680
toolbar .linked > button.text-button.image-button, .titlebar:not(headerbar) .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action),
681
headerbar .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.text-button.image-button, toolbar
682
.linked.vertical > button.text-button.image-button, .titlebar:not(headerbar)
683
.linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action),
684
headerbar
685
.linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box
686
.linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification
687
.linked.vertical > button.text-button.image-button, .linked >
688
button.flat.text-button.image-button,
689
.linked.vertical >
690
button.flat.text-button.image-button {
691
border-radius: 2px;
692
-gtk-outline-radius: 2px;
693
}
694
695
infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected
696
button:disabled {
697
background-color: rgba(255, 255, 255, 0.12);
698
color: rgba(255, 255, 255, 0.3);
699
}
700
701
row:selected button.sidebar-button, infobar.info button.flat, infobar.question button.flat, infobar.warning button.flat, infobar.error button.flat, .budgie-panel button, .budgie-panel #tasklist-button, .raven stackswitcher.linked > button, .raven-mpris button.image-button, row:selected
702
button.flat {
703
color: rgba(255, 255, 255, 0.7);
704
}
705
706
row:selected button.sidebar-button:hover, infobar.info button.flat:hover, infobar.question button.flat:hover, infobar.warning button.flat:hover, infobar.error button.flat:hover, .budgie-panel button:hover, .budgie-panel #tasklist-button:hover, .raven stackswitcher.linked > button:hover, .raven-mpris button.image-button:hover, row:selected button.sidebar-button:active, infobar.info button.flat:active, infobar.question button.flat:active, infobar.warning button.flat:active, infobar.error button.flat:active, .budgie-panel button:active, .budgie-panel #tasklist-button:active, .raven stackswitcher.linked > button:active, .raven-mpris button.image-button:active, row:selected
707
button.flat:hover, row:selected
708
button.flat:active {
709
color: #FFFFFF;
710
}
711
712
row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.question button.flat:disabled, infobar.warning button.flat:disabled, infobar.error button.flat:disabled, .budgie-panel button:disabled, .budgie-panel #tasklist-button:disabled, .raven stackswitcher.linked > button:disabled, .raven-mpris button.image-button:disabled, row:selected
713
button.flat:disabled {
714
color: rgba(255, 255, 255, 0.3);
715
}
716
717
row:selected button.sidebar-button:checked, infobar.info button.flat:checked, infobar.question button.flat:checked, infobar.warning button.flat:checked, infobar.error button.flat:checked, .budgie-panel button:checked, .budgie-panel #tasklist-button:checked, .raven stackswitcher.linked > button:checked, .raven-mpris button.image-button:checked, row:selected
718
button.flat:checked {
719
background-color: rgba(255, 255, 255, 0.3);
720
color: #FFFFFF;
721
}
722
723
row:selected button.sidebar-button:checked:disabled, infobar.info button.flat:checked:disabled, infobar.question button.flat:checked:disabled, infobar.warning button.flat:checked:disabled, infobar.error button.flat:checked:disabled, .budgie-panel button:checked:disabled, .budgie-panel #tasklist-button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .raven-mpris button.image-button:checked:disabled, row:selected
724
button.flat:checked:disabled {
725
background-color: rgba(255, 255, 255, 0.12);
726
color: rgba(255, 255, 255, 0.5);
727
}
728
729
730
button.osd {
731
padding: 10px 14px;
732
}
733
734
735
button.osd.image-button {
736
padding: 10px;
737
}
738
739
740
button.osd:disabled {
741
opacity: 0;
742
}
743
744
745
button.suggested-action {
746
background-color: #FF4081;
747
color: #FFFFFF;
748
}
749
750
751
button.suggested-action:disabled {
752
box-shadow: none;
753
background-color: rgba(0, 0, 0, 0.12);
754
color: rgba(0, 0, 0, 0.38);
755
}
756
757
758
button.suggested-action:checked {
759
background-color: #ff79a7;
760
}
761
762
763
button.suggested-action.flat {
764
background-color: transparent;
765
color: #FF4081;
766
}
767
768
769
button.suggested-action.flat:disabled {
770
box-shadow: none;
771
background-color: transparent;
772
color: rgba(0, 0, 0, 0.38);
773
}
774
775
776
button.suggested-action.flat:checked {
777
background-color: rgba(255, 64, 129, 0.3);
778
}
779
780
781
button.destructive-action {
782
background-color: #FF5252;
783
color: #FFFFFF;
784
}
785
786
787
button.destructive-action:disabled {
788
box-shadow: none;
789
background-color: rgba(0, 0, 0, 0.12);
790
color: rgba(0, 0, 0, 0.38);
791
}
792
793
794
button.destructive-action:checked {
795
background-color: #ff8686;
796
}
797
798
799
button.destructive-action.flat {
800
background-color: transparent;
801
color: #FF5252;
802
}
803
804
805
button.destructive-action.flat:disabled {
806
box-shadow: none;
807
background-color: transparent;
808
color: rgba(0, 0, 0, 0.38);
809
}
810
811
812
button.destructive-action.flat:checked {
813
background-color: rgba(255, 82, 82, 0.3);
814
}
815
816
.stack-switcher >
817
button {
818
outline-offset: -4px;
819
}
820
821
.stack-switcher >
822
button > label {
823
padding-left: 6px;
824
padding-right: 6px;
825
}
826
827
.stack-switcher >
828
button > image {
829
padding-left: 6px;
830
padding-right: 6px;
831
padding-top: 3px;
832
padding-bottom: 3px;
833
}
834
835
.stack-switcher >
836
button.text-button {
837
padding-left: 10px;
838
padding-right: 10px;
839
}
840
841
.stack-switcher >
842
button.image-button {
843
padding-left: 2px;
844
padding-right: 2px;
845
}
846
847
.stack-switcher >
848
button.needs-attention:checked > label,
849
.stack-switcher >
850
button.needs-attention:checked > image {
851
animation: none;
852
background-image: none;
853
}
854
855
.primary-toolbar
856
button {
857
-gtk-icon-shadow: none;
858
}
859
860
861
button.image-button, toolbar .linked > button.image-button, .titlebar:not(headerbar) .linked > button.image-button:not(.suggested-action):not(.destructive-action),
862
headerbar .linked > button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.image-button, toolbar
863
.linked.vertical > button.image-button,
864
headerbar
865
.linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action), .app-notification
866
.linked.vertical > button.image-button, .linked > button.flat.image-button,
867
.linked.vertical > button.flat.image-button, .inline-toolbar button:not(.text-button), check,
868
radio, button.titlebutton, .nautilus-window headerbar > revealer > button, .raven .raven-header:not(.top) button.image-button, .raven .expander-button,
869
button.close,
870
button.circular {
871
border-radius: 9999px;
872
-gtk-outline-radius: 9999px;
873
}
874
875
spinbutton:not(.vertical) button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider button:dir(ltr), .gedit-search-slider button:dir(rtl), .pluma-window paned.horizontal box.vertical box.horizontal button.flat {
876
min-height: 20px;
877
min-width: 20px;
878
padding: 0;
879
border-radius: 9999px;
880
-gtk-outline-radius: 9999px;
881
}
882
883
.stack-switcher >
884
button.needs-attention > label,
885
.stack-switcher >
886
button.needs-attention > image, stacksidebar row.needs-attention > label {
887
animation: needs_attention 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
888
background-repeat: no-repeat;
889
background-position: right 3px;
890
background-size: 6px 6px;
891
}
892
893
.stack-switcher >
894
button.needs-attention > label:dir(rtl),
895
.stack-switcher >
896
button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) {
897
background-position: left 3px;
898
}
899
900
.linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > button, .linked:not(.vertical) > combobox > box > button.combo {
901
border-radius: 0;
902
-gtk-outline-radius: 2px;
903
}
904
905
.linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo {
906
border-top-left-radius: 2px;
907
border-bottom-left-radius: 2px;
908
}
909
910
.linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo {
911
border-top-right-radius: 2px;
912
border-bottom-right-radius: 2px;
913
}
914
915
.linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo {
916
border-radius: 2px;
917
}
918
919
.linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button, .linked.vertical > combobox > box > button.combo {
920
border-radius: 0;
921
-gtk-outline-radius: 2px;
922
}
923
924
.linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo {
925
border-top-left-radius: 2px;
926
border-top-right-radius: 2px;
927
}
928
929
.linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo {
930
border-bottom-left-radius: 2px;
931
border-bottom-right-radius: 2px;
932
}
933
934
.linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo {
935
border-radius: 2px;
936
}
937
938
/* menu buttons */
939
modelbutton.flat,
940
.menuitem.button.flat {
941
min-height: 28px;
942
padding: 0 8px;
943
border-radius: 2px;
944
color: inherit;
945
}
946
947
modelbutton.flat arrow {
948
background: none;
949
}
950
951
modelbutton.flat arrow:hover {
952
background: none;
953
}
954
955
modelbutton.flat arrow.left {
956
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
957
}
958
959
modelbutton.flat arrow.right {
960
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
961
}
962
963
button.color {
964
min-height: 20px;
965
min-width: 20px;
966
padding: 6px;
967
}
968
969
/*********
970
* Links *
971
*********/
972
*:link, button:link,
973
button:visited, *:link:hover, button:hover:link,
974
button:hover:visited, *:link:active, button:active:link,
975
button:active:visited {
976
color: #42A5F5;
977
}
978
979
*:link:visited,
980
button:visited, *:link:visited:hover,
981
button:visited:hover, *:link:visited:active,
982
button:visited:active {
983
color: #E040FB;
984
}
985
986
infobar.info *:link, infobar.info button:link, infobar.info
987
button:visited, infobar.question *:link, infobar.question button:link, infobar.question
988
button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning
989
button:visited, infobar.error *:link, infobar.error button:link, infobar.error
990
button:visited, *:link:selected, button:selected:link,
991
button:selected:visited, .selection-mode.titlebar:not(headerbar) .subtitle:link,
992
headerbar.selection-mode .subtitle:link,
993
*:selected *:link,
994
*:selected button:link,
995
*:selected
996
button:visited {
997
color: #FFFFFF;
998
}
999
1000
button:link > label,
1001
button:visited > label {
1002
text-decoration-line: underline;
1003
}
1004
1005
/*****************
1006
* GtkSpinButton *
1007
*****************/
1008
spinbutton:not(.vertical) {
1009
padding: 0;
1010
}
1011
1012
notebook > stack:not(:only-child) spinbutton:not(.vertical) entry, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:focus, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:disabled,
1013
spinbutton:not(.vertical) entry {
1014
min-width: 28px;
1015
margin: 0;
1016
border-image: none;
1017
border-radius: 0;
1018
box-shadow: none;
1019
background-color: transparent;
1020
}
1021
1022
spinbutton:not(.vertical) button {
1023
border: solid 6px transparent;
1024
}
1025
1026
spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) {
1027
margin-left: -3px;
1028
}
1029
1030
spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) {
1031
margin-right: -3px;
1032
}
1033
1034
spinbutton.vertical:disabled {
1035
color: rgba(0, 0, 0, 0.38);
1036
}
1037
1038
spinbutton.vertical:drop(active) {
1039
box-shadow: none;
1040
}
1041
1042
spinbutton.vertical entry {
1043
min-height: 32px;
1044
min-width: 44px;
1045
padding: 0;
1046
}
1047
1048
spinbutton.vertical button {
1049
min-height: 32px;
1050
min-width: 44px;
1051
padding: 0;
1052
}
1053
1054
spinbutton.vertical button.up {
1055
border-radius: 2px 2px 0 0;
1056
}
1057
1058
spinbutton.vertical button.down {
1059
border-radius: 0 0 2px 2px;
1060
}
1061
1062
treeview spinbutton:not(.vertical) {
1063
min-height: 0;
1064
border-style: none;
1065
border-radius: 0;
1066
}
1067
1068
treeview spinbutton:not(.vertical) entry {
1069
min-height: 0;
1070
padding: 1px 2px;
1071
}
1072
1073
/**************
1074
* ComboBoxes *
1075
**************/
1076
combobox arrow {
1077
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
1078
min-height: 16px;
1079
min-width: 16px;
1080
}
1081
1082
combobox decoration,
1083
combobox button.combo:checked {
1084
transition: none;
1085
}
1086
1087
combobox button.combo cellview:dir(ltr) {
1088
margin-left: 0px;
1089
}
1090
1091
combobox button.combo cellview:dir(rtl) {
1092
margin-right: 0px;
1093
}
1094
1095
combobox #gtk-combobox-popup-menu {
1096
padding: 2px 0;
1097
}
1098
1099
combobox #gtk-combobox-popup-menu menuitem {
1100
min-height: 28px;
1101
padding: 0 8px;
1102
}
1103
1104
combobox #gtk-combobox-popup-menu > arrow.top {
1105
margin-top: -2px;
1106
}
1107
1108
combobox #gtk-combobox-popup-menu > arrow.bottom {
1109
margin-bottom: -6px;
1110
}
1111
1112
combobox:drop(active) {
1113
box-shadow: none;
1114
}
1115
1116
notebook > stack:not(:only-child) button.combo, .raven .raven-background button.combo, #login_window #user_combobox button {
1117
border-radius: 0;
1118
background-image: none;
1119
font-weight: inherit;
1120
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
1121
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
1122
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.26);
1123
background-color: transparent;
1124
color: rgba(0, 0, 0, 0.87);
1125
}
1126
1127
notebook > stack:not(:only-child) button.combo:hover, .raven .raven-background button.combo:hover, #login_window #user_combobox button:hover {
1128
box-shadow: inset 0 -2px rgba(0, 0, 0, 0.38);
1129
}
1130
1131
notebook > stack:not(:only-child) button.combo:checked, .raven .raven-background button.combo:checked, #login_window #user_combobox button:checked {
1132
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px;
1133
}
1134
1135
notebook > stack:not(:only-child) button.combo:disabled, .raven .raven-background button.combo:disabled, #login_window #user_combobox button:disabled {
1136
color: rgba(0, 0, 0, 0.38);
1137
}
1138
1139
/************
1140
* Toolbars *
1141
************/
1142
toolbar {
1143
-GtkWidget-window-dragging: true;
1144
padding: 3px;
1145
background-color: #F5F5F5;
1146
}
1147
1148
.osd toolbar {
1149
background-color: transparent;
1150
}
1151
1152
toolbar.osd, .app-notification, frame.documents-dropdown {
1153
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1154
padding: 6px;
1155
border-radius: 2px;
1156
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
1157
background-color: #FFFFFF;
1158
}
1159
1160
toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop {
1161
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.4);
1162
}
1163
1164
toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown {
1165
border-radius: 0;
1166
}
1167
1168
toolbar.horizontal separator {
1169
margin: 3px;
1170
}
1171
1172
toolbar.vertical separator {
1173
margin: 3px;
1174
}
1175
1176
toolbar:not(.inline-toolbar):not(.osd) scale,
1177
toolbar:not(.inline-toolbar):not(.osd) entry,
1178
toolbar:not(.inline-toolbar):not(.osd) spinbutton,
1179
toolbar:not(.inline-toolbar):not(.osd) button {
1180
margin: 3px;
1181
}
1182
1183
toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child),
1184
toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child),
1185
toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) {
1186
margin-left: 0;
1187
}
1188
1189
toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child),
1190
toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child),
1191
toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) {
1192
margin-right: 0;
1193
}
1194
1195
toolbar:not(.inline-toolbar):not(.osd) switch {
1196
margin: 9px 3px;
1197
}
1198
1199
.inline-toolbar {
1200
padding: 6px;
1201
border-style: solid;
1202
border-width: 0 1px 1px;
1203
border-color: rgba(0, 0, 0, 0.1);
1204
background-color: #FAFAFA;
1205
}
1206
1207
searchbar,
1208
.location-bar {
1209
padding: 6px;
1210
border-style: solid;
1211
border-width: 0 0 1px;
1212
border-color: rgba(0, 0, 0, 0.1);
1213
background-color: #F5F5F5;
1214
background-clip: border-box;
1215
}
1216
1217
/***************
1218
* Header bars *
1219
***************/
1220
.titlebar:not(headerbar),
1221
headerbar {
1222
transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
1223
min-height: 44px;
1224
padding: 0 6px;
1225
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.4);
1226
background-color: #E0E0E0;
1227
color: rgba(0, 0, 0, 0.87);
1228
}
1229
1230
.titlebar:disabled:not(headerbar) :not(button) > label,
1231
headerbar:disabled :not(button) > label {
1232
color: rgba(0, 0, 0, 0.38);
1233
}
1234
1235
.titlebar:backdrop:not(headerbar),
1236
headerbar:backdrop {
1237
color: rgba(0, 0, 0, 0.54);
1238
}
1239
1240
.titlebar:backdrop:disabled:not(headerbar) :not(button) > label,
1241
headerbar:backdrop:disabled :not(button) > label {
1242
color: rgba(0, 0, 0, 0.26);
1243
}
1244
1245
.titlebar:not(headerbar) .title,
1246
headerbar .title {
1247
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
1248
padding: 0 12px;
1249
font-weight: bold;
1250
}
1251
1252
.titlebar:not(headerbar) .subtitle,
1253
headerbar .subtitle {
1254
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
1255
padding: 0 12px;
1256
font-size: smaller;
1257
}
1258
1259
.titlebar:not(headerbar) .linked:not(.vertical) > entry:not(.flat),
1260
headerbar .linked:not(.vertical) > entry:not(.flat) {
1261
border-radius: 2px;
1262
}
1263
1264
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
1265
headerbar button:not(.suggested-action):not(.destructive-action) {
1266
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
1267
color: rgba(0, 0, 0, 0.54);
1268
}
1269
1270
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active,
1271
headerbar button:not(.suggested-action):not(.destructive-action):hover,
1272
headerbar button:not(.suggested-action):not(.destructive-action):active {
1273
color: rgba(0, 0, 0, 0.87);
1274
}
1275
1276
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled,
1277
headerbar button:not(.suggested-action):not(.destructive-action):disabled {
1278
color: rgba(0, 0, 0, 0.26);
1279
}
1280
1281
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked,
1282
headerbar button:not(.suggested-action):not(.destructive-action):checked {
1283
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px;
1284
color: rgba(0, 0, 0, 0.87);
1285
}
1286
1287
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
1288
headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled {
1289
color: rgba(0, 0, 0, 0.38);
1290
}
1291
1292
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
1293
headerbar button:not(.suggested-action):not(.destructive-action):checked,
1294
headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled {
1295
background-color: transparent;
1296
}
1297
1298
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop,
1299
headerbar button:not(.suggested-action):not(.destructive-action):backdrop {
1300
color: rgba(0, 0, 0, 0.38);
1301
}
1302
1303
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:active,
1304
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:hover,
1305
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:active {
1306
color: rgba(0, 0, 0, 0.54);
1307
}
1308
1309
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled,
1310
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:disabled {
1311
color: rgba(0, 0, 0, 0.26);
1312
}
1313
1314
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked,
1315
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked {
1316
color: rgba(0, 0, 0, 0.54);
1317
}
1318
1319
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled,
1320
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled {
1321
color: rgba(0, 0, 0, 0.26);
1322
}
1323
1324
.titlebar:not(headerbar) button.suggested-action:disabled, .titlebar:not(headerbar) button.destructive-action:disabled,
1325
headerbar button.suggested-action:disabled,
1326
headerbar button.destructive-action:disabled {
1327
background-color: rgba(0, 0, 0, 0.12);
1328
color: rgba(0, 0, 0, 0.38);
1329
}
1330
1331
.selection-mode.titlebar:not(headerbar),
1332
headerbar.selection-mode {
1333
transition: background-color 0.00001s 0.3s;
1334
animation: header_ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1);
1335
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.2);
1336
background-color: #42A5F5;
1337
color: #FFFFFF;
1338
}
1339
1340
.selection-mode.titlebar:backdrop:not(headerbar),
1341
headerbar.selection-mode:backdrop {
1342
color: rgba(255, 255, 255, 0.7);
1343
}
1344
1345
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
1346
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) {
1347
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px;
1348
color: #FFFFFF;
1349
}
1350
1351
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled,
1352
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled {
1353
color: rgba(255, 255, 255, 0.5);
1354
}
1355
1356
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked,
1357
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked {
1358
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px;
1359
color: #FFFFFF;
1360
}
1361
1362
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
1363
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled {
1364
color: rgba(255, 255, 255, 0.5);
1365
}
1366
1367
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop,
1368
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop {
1369
color: rgba(255, 255, 255, 0.7);
1370
}
1371
1372
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled,
1373
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled {
1374
color: rgba(255, 255, 255, 0.3);
1375
}
1376
1377
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked,
1378
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked {
1379
color: rgba(255, 255, 255, 0.7);
1380
}
1381
1382
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled,
1383
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled {
1384
color: rgba(255, 255, 255, 0.3);
1385
}
1386
1387
.selection-mode.titlebar:not(headerbar) .selection-menu,
1388
headerbar.selection-mode .selection-menu {
1389
padding-left: 16px;
1390
padding-right: 16px;
1391
}
1392
1393
.selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow,
1394
headerbar.selection-mode .selection-menu GtkArrow {
1395
-GtkArrow-arrow-scaling: 1;
1396
}
1397
1398
.selection-mode.titlebar:not(headerbar) .selection-menu .arrow,
1399
headerbar.selection-mode .selection-menu .arrow {
1400
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
1401
}
1402
1403
.fullscreen .titlebar:not(headerbar),
1404
.tiled .titlebar:not(headerbar),
1405
.maximized .titlebar:not(headerbar), .fullscreen
1406
headerbar,
1407
.tiled
1408
headerbar,
1409
.maximized
1410
headerbar {
1411
border-radius: 0;
1412
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1413
}
1414
1415
.default-decoration.titlebar:not(headerbar),
1416
headerbar.default-decoration {
1417
min-height: 20px;
1418
padding: 6px;
1419
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
1420
}
1421
1422
.fullscreen .default-decoration.titlebar:not(headerbar),
1423
.tiled .default-decoration.titlebar:not(headerbar),
1424
.maximized .default-decoration.titlebar:not(headerbar), .fullscreen
1425
headerbar.default-decoration,
1426
.tiled
1427
headerbar.default-decoration,
1428
.maximized
1429
headerbar.default-decoration {
1430
box-shadow: none;
1431
}
1432
1433
.default-decoration.titlebar:not(headerbar) button.titlebutton,
1434
headerbar.default-decoration button.titlebutton {
1435
min-height: 20px;
1436
min-width: 20px;
1437
margin: 0;
1438
padding: 0;
1439
}
1440
1441
.background:not(.csd) .default-decoration.titlebar:not(headerbar) button.titlebutton:active, .background:not(.csd)
1442
headerbar.default-decoration button.titlebutton:active {
1443
background-size: 1000% 1000%;
1444
}
1445
1446
headerbar entry,
1447
headerbar spinbutton,
1448
headerbar button {
1449
margin-top: 6px;
1450
margin-bottom: 6px;
1451
}
1452
1453
headerbar switch {
1454
margin-top: 12px;
1455
margin-bottom: 12px;
1456
}
1457
1458
headerbar spinbutton button {
1459
margin-top: 0;
1460
margin-bottom: 0;
1461
}
1462
1463
.background:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) .titlebar {
1464
border-top-left-radius: 2px;
1465
border-top-right-radius: 2px;
1466
}
1467
1468
window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) separator:first-child + headerbar,
1469
window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) headerbar:first-child {
1470
border-top-left-radius: 2px;
1471
}
1472
1473
window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) headerbar:last-child {
1474
border-top-right-radius: 2px;
1475
}
1476
1477
window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) stack headerbar:first-child, window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) stack headerbar:last-child {
1478
border-top-left-radius: 2px;
1479
border-top-right-radius: 2px;
1480
}
1481
1482
window.csd > .titlebar:not(headerbar) {
1483
padding: 0;
1484
background-color: transparent;
1485
background-image: none;
1486
border-style: none;
1487
box-shadow: none;
1488
}
1489
1490
.titlebar:not(headerbar) > separator {
1491
background-color: #E0E0E0;
1492
background-image: image(rgba(0, 0, 0, 0.1));
1493
}
1494
1495
/************
1496
* Pathbars *
1497
************/
1498
.caja-pathbar button,
1499
.path-bar button {
1500
padding-left: 4px;
1501
padding-right: 4px;
1502
}
1503
1504
.caja-pathbar button label:not(:only-child):first-child,
1505
.path-bar button label:not(:only-child):first-child {
1506
margin-left: 4px;
1507
}
1508
1509
.caja-pathbar button label:not(:only-child):last-child,
1510
.path-bar button label:not(:only-child):last-child {
1511
margin-right: 4px;
1512
}
1513
1514
.caja-pathbar button.slider-button,
1515
.path-bar button.slider-button {
1516
padding-left: 4px;
1517
padding-right: 4px;
1518
}
1519
1520
:not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar)
1521
.path-bar button {
1522
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
1523
border-radius: 2px;
1524
}
1525
1526
:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar)
1527
.path-bar button:checked {
1528
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px;
1529
}
1530
1531
:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar)
1532
.path-bar button:checked, :not(headerbar)
1533
.path-bar button:checked:disabled {
1534
background-color: transparent;
1535
}
1536
1537
/**************
1538
* Tree Views *
1539
**************/
1540
treeview.view {
1541
border-left-color: alpha(currentColor, 0.3);
1542
border-top-color: rgba(0, 0, 0, 0.1);
1543
}
1544
1545
* {
1546
-GtkTreeView-horizontal-separator: 4;
1547
-GtkTreeView-grid-line-width: 1;
1548
-GtkTreeView-grid-line-pattern: '';
1549
-GtkTreeView-tree-line-width: 1;
1550
-GtkTreeView-tree-line-pattern: '';
1551
-GtkTreeView-expander-size: 16;
1552
}
1553
1554
treeview.view:hover, treeview.view:active, treeview.view:selected {
1555
border-radius: 0;
1556
}
1557
1558
treeview.view.separator {
1559
min-height: 5px;
1560
color: rgba(0, 0, 0, 0.1);
1561
}
1562
1563
treeview.view:drop(active) {
1564
border-style: solid none;
1565
border-width: 1px;
1566
border-color: #FF4081;
1567
}
1568
1569
treeview.view:drop(active).after {
1570
border-top-style: none;
1571
}
1572
1573
treeview.view:drop(active).before {
1574
border-bottom-style: none;
1575
}
1576
1577
treeview.view.expander {
1578
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
1579
-gtk-icon-transform: rotate(-90deg);
1580
color: rgba(0, 0, 0, 0.54);
1581
}
1582
1583
treeview.view.expander:dir(rtl) {
1584
-gtk-icon-transform: rotate(90deg);
1585
}
1586
1587
treeview.view.expander:checked {
1588
-gtk-icon-transform: unset;
1589
}
1590
1591
treeview.view.expander:hover, treeview.view.expander:active {
1592
color: rgba(0, 0, 0, 0.87);
1593
}
1594
1595
treeview.view.expander:disabled {
1596
color: rgba(0, 0, 0, 0.26);
1597
}
1598
1599
treeview.view.expander:selected {
1600
color: rgba(255, 255, 255, 0.7);
1601
}
1602
1603
treeview.view.expander:selected:hover, treeview.view.expander:selected:active {
1604
color: #FFFFFF;
1605
}
1606
1607
treeview.view.expander:selected:disabled {
1608
color: rgba(255, 255, 255, 0.3);
1609
}
1610
1611
treeview.view.progressbar {
1612
border-bottom: 4px solid #42A5F5;
1613
box-shadow: none;
1614
background-color: transparent;
1615
}
1616
1617
treeview.view.progressbar:selected {
1618
border-bottom-color: #FFFFFF;
1619
}
1620
1621
treeview.view.trough {
1622
border-bottom: 4px solid rgba(66, 165, 245, 0.3);
1623
box-shadow: none;
1624
background-color: transparent;
1625
}
1626
1627
treeview.view.trough:selected {
1628
border-bottom-color: rgba(255, 255, 255, 0.3);
1629
}
1630
1631
treeview.view header button {
1632
padding: 2px 6px;
1633
border-style: none solid solid none;
1634
border-width: 1px;
1635
border-color: rgba(0, 0, 0, 0.1);
1636
border-radius: 0;
1637
background-clip: border-box;
1638
}
1639
1640
treeview.view header button, treeview.view header button:hover, treeview.view header button:active {
1641
box-shadow: none;
1642
}
1643
1644
treeview.view header button, treeview.view header button:disabled {
1645
background-color: #FFFFFF;
1646
}
1647
1648
treeview.view header button:last-child {
1649
border-right-style: none;
1650
}
1651
1652
treeview.view button.dnd,
1653
treeview.view header.button.dnd {
1654
padding: 2px 6px;
1655
border-style: none solid solid;
1656
border-width: 1px;
1657
border-color: rgba(0, 0, 0, 0.1);
1658
border-radius: 0;
1659
box-shadow: none;
1660
background-color: #FFFFFF;
1661
background-clip: border-box;
1662
color: #42A5F5;
1663
}
1664
1665
treeview.view acceleditor > label {
1666
background-color: #42A5F5;
1667
}
1668
1669
/*********
1670
* Menus *
1671
*********/
1672
menubar,
1673
.menubar {
1674
-GtkWidget-window-dragging: true;
1675
padding: 0;
1676
background-color: #E0E0E0;
1677
}
1678
1679
menubar > menuitem,
1680
.menubar > menuitem {
1681
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
1682
min-height: 20px;
1683
padding: 4px 8px;
1684
color: rgba(0, 0, 0, 0.54);
1685
}
1686
1687
menubar > menuitem:hover,
1688
.menubar > menuitem:hover {
1689
transition: none;
1690
background-color: rgba(0, 0, 0, 0.12);
1691
color: rgba(0, 0, 0, 0.87);
1692
}
1693
1694
menubar > menuitem:disabled,
1695
.menubar > menuitem:disabled {
1696
color: rgba(0, 0, 0, 0.26);
1697
}
1698
1699
.csd.popup {
1700
background-color: transparent;
1701
}
1702
1703
menu,
1704
.menu,
1705
.context-menu {
1706
margin: 4px 0;
1707
padding: 4px 0;
1708
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
1709
background-color: #FFFFFF;
1710
border: 1px solid rgba(0, 0, 0, 0.1);
1711
}
1712
1713
.csd menu, .csd
1714
.menu, .csd
1715
.context-menu {
1716
border: none;
1717
border-radius: 2px;
1718
}
1719
1720
menu menuitem,
1721
.menu menuitem,
1722
.context-menu menuitem {
1723
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
1724
min-height: 20px;
1725
min-width: 40px;
1726
padding: 4px 8px;
1727
font: initial;
1728
text-shadow: none;
1729
}
1730
1731
menu menuitem:hover,
1732
.menu menuitem:hover,
1733
.context-menu menuitem:hover {
1734
transition: none;
1735
background-color: rgba(0, 0, 0, 0.12);
1736
}
1737
1738
menu menuitem:disabled,
1739
.menu menuitem:disabled,
1740
.context-menu menuitem:disabled {
1741
color: rgba(0, 0, 0, 0.38);
1742
}
1743
1744
menu menuitem arrow,
1745
.menu menuitem arrow,
1746
.context-menu menuitem arrow {
1747
min-height: 16px;
1748
min-width: 16px;
1749
}
1750
1751
menu menuitem arrow:dir(ltr),
1752
.menu menuitem arrow:dir(ltr),
1753
.context-menu menuitem arrow:dir(ltr) {
1754
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
1755
margin-left: 8px;
1756
}
1757
1758
menu menuitem arrow:dir(rtl),
1759
.menu menuitem arrow:dir(rtl),
1760
.context-menu menuitem arrow:dir(rtl) {
1761
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
1762
margin-right: 8px;
1763
}
1764
1765
menu menuitem label:dir(rtl), menu menuitem label:dir(ltr),
1766
.menu menuitem label:dir(rtl),
1767
.menu menuitem label:dir(ltr),
1768
.context-menu menuitem label:dir(rtl),
1769
.context-menu menuitem label:dir(ltr) {
1770
color: inherit;
1771
}
1772
1773
menu > arrow,
1774
.menu > arrow,
1775
.context-menu > arrow {
1776
min-height: 16px;
1777
min-width: 16px;
1778
padding: 4px;
1779
background-color: #FFFFFF;
1780
color: rgba(0, 0, 0, 0.54);
1781
}
1782
1783
menu > arrow.top,
1784
.menu > arrow.top,
1785
.context-menu > arrow.top {
1786
margin-top: -4px;
1787
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1788
border-radius: 2px 2px 0 0;
1789
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
1790
}
1791
1792
menu > arrow.bottom,
1793
.menu > arrow.bottom,
1794
.context-menu > arrow.bottom {
1795
margin-bottom: -12px;
1796
border-top: 1px solid rgba(0, 0, 0, 0.1);
1797
border-radius: 0 0 2px 2px;
1798
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
1799
}
1800
1801
menu > arrow:hover,
1802
.menu > arrow:hover,
1803
.context-menu > arrow:hover {
1804
background-image: image(rgba(0, 0, 0, 0.12));
1805
color: rgba(0, 0, 0, 0.87);
1806
}
1807
1808
menu > arrow:disabled,
1809
.menu > arrow:disabled,
1810
.context-menu > arrow:disabled {
1811
border-color: transparent;
1812
background-color: transparent;
1813
color: transparent;
1814
}
1815
1816
menu separator,
1817
.menu separator,
1818
.context-menu separator {
1819
margin: 4px 0;
1820
}
1821
1822
menuitem accelerator {
1823
color: rgba(0, 0, 0, 0.54);
1824
}
1825
1826
.popup:not(.csd) menu menuitem {
1827
color: #212121;
1828
}
1829
1830
.popup:not(.csd) menu menuitem:hover {
1831
background-color: #E0E0E0;
1832
}
1833
1834
.popup:not(.csd) menu menuitem:disabled {
1835
color: #9E9E9E;
1836
}
1837
1838
.popup:not(.csd) menu accelerator {
1839
color: #757575;
1840
}
1841
1842
/************
1843
* Popovers *
1844
************/
1845
popover.background {
1846
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1847
padding: 2px;
1848
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
1849
background-color: #FAFAFA;
1850
}
1851
1852
popover.background:backdrop {
1853
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1854
}
1855
1856
popover.background, .csd popover.background {
1857
border-style: solid;
1858
border-width: 1px;
1859
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3);
1860
border-radius: 3px;
1861
}
1862
1863
popover.background > stack {
1864
margin: -4px;
1865
}
1866
1867
popover.background > toolbar {
1868
margin: -2px;
1869
}
1870
1871
popover.background > list,
1872
popover.background > .view,
1873
popover.background > toolbar {
1874
border-style: none;
1875
box-shadow: none;
1876
background-color: transparent;
1877
}
1878
1879
popover.background.menu button,
1880
popover.background button.model {
1881
min-height: 32px;
1882
padding: 0 8px;
1883
border-radius: 2px;
1884
}
1885
1886
popover.background separator {
1887
margin: 4px 0;
1888
}
1889
1890
popover.background list separator {
1891
margin: 0;
1892
}
1893
1894
/*************
1895
* Notebooks *
1896
*************/
1897
notebook > header {
1898
border-width: 1px;
1899
border-color: rgba(0, 0, 0, 0.1);
1900
background-color: #F5F5F5;
1901
background-clip: border-box;
1902
}
1903
1904
notebook > header.top {
1905
border-bottom-style: solid;
1906
}
1907
1908
notebook > header.top > tabs {
1909
margin-bottom: -1px;
1910
}
1911
1912
notebook > header.top > tabs > tab:hover {
1913
box-shadow: inset 0 -2px rgba(0, 0, 0, 0.26);
1914
}
1915
1916
notebook > header.top > tabs > tab:checked {
1917
box-shadow: inset 0 -2px #42A5F5;
1918
}
1919
1920
notebook > header.bottom {
1921
border-top-style: solid;
1922
}
1923
1924
notebook > header.bottom > tabs {
1925
margin-top: -1px;
1926
}
1927
1928
notebook > header.bottom > tabs > tab:hover {
1929
box-shadow: inset 0 2px rgba(0, 0, 0, 0.26);
1930
}
1931
1932
notebook > header.bottom > tabs > tab:checked {
1933
box-shadow: inset 0 2px #42A5F5;
1934
}
1935
1936
notebook > header.left {
1937
border-right-style: solid;
1938
}
1939
1940
notebook > header.left > tabs {
1941
margin-right: -1px;
1942
}
1943
1944
notebook > header.left > tabs > tab:hover {
1945
box-shadow: inset -2px 0 rgba(0, 0, 0, 0.26);
1946
}
1947
1948
notebook > header.left > tabs > tab:checked {
1949
box-shadow: inset -2px 0 #42A5F5;
1950
}
1951
1952
notebook > header.right {
1953
border-left-style: solid;
1954
}
1955
1956
notebook > header.right > tabs {
1957
margin-left: -1px;
1958
}
1959
1960
notebook > header.right > tabs > tab:hover {
1961
box-shadow: inset 2px 0 rgba(0, 0, 0, 0.26);
1962
}
1963
1964
notebook > header.right > tabs > tab:checked {
1965
box-shadow: inset 2px 0 #42A5F5;
1966
}
1967
1968
notebook > header.top > tabs > arrow {
1969
border-top-style: none;
1970
}
1971
1972
notebook > header.bottom > tabs > arrow {
1973
border-bottom-style: none;
1974
}
1975
1976
notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
1977
padding-left: 4px;
1978
padding-right: 4px;
1979
}
1980
1981
notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
1982
margin-left: -8px;
1983
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
1984
}
1985
1986
notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
1987
margin-right: -8px;
1988
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
1989
}
1990
1991
notebook > header.left > tabs > arrow {
1992
border-left-style: none;
1993
}
1994
1995
notebook > header.right > tabs > arrow {
1996
border-right-style: none;
1997
}
1998
1999
notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
2000
padding-top: 4px;
2001
padding-bottom: 4px;
2002
}
2003
2004
notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
2005
margin-top: -8px;
2006
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
2007
}
2008
2009
notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
2010
margin-bottom: -8px;
2011
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
2012
}
2013
2014
notebook > header > tabs > arrow {
2015
min-height: 16px;
2016
min-width: 16px;
2017
border-radius: 0;
2018
}
2019
2020
notebook > header tab {
2021
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
2022
min-height: 20px;
2023
min-width: 20px;
2024
padding: 6px 12px;
2025
outline-offset: -6px;
2026
border-width: 1px;
2027
border-color: transparent;
2028
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 10%, transparent 0%);
2029
background-repeat: no-repeat;
2030
background-position: center;
2031
background-size: 0% 0%;
2032
color: rgba(0, 0, 0, 0.54);
2033
font-weight: 500;
2034
}
2035
2036
notebook > header tab:hover {
2037
color: rgba(0, 0, 0, 0.87);
2038
}
2039
2040
notebook > header tab:hover.reorderable-page {
2041
border-color: rgba(0, 0, 0, 0.1);
2042
background-color: #FAFAFA;
2043
}
2044
2045
notebook > header tab:disabled {
2046
color: rgba(0, 0, 0, 0.26);
2047
}
2048
2049
notebook > header tab:checked {
2050
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0.3s cubic-bezier(0, 0, 0.2, 1), background-image 0.8s cubic-bezier(0, 0, 0.2, 1);
2051
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
2052
background-size: 1000% 1000%;
2053
color: rgba(0, 0, 0, 0.87);
2054
}
2055
2056
notebook > header tab:checked:disabled {
2057
color: rgba(0, 0, 0, 0.38);
2058
}
2059
2060
notebook > header tab:checked.reorderable-page {
2061
border-color: rgba(0, 0, 0, 0.1);
2062
background-color: #FFFFFF;
2063
}
2064
2065
notebook > header tab button.flat:last-child {
2066
margin-left: 6px;
2067
margin-right: -6px;
2068
}
2069
2070
notebook > header tab button.flat:first-child {
2071
margin-left: -6px;
2072
margin-right: 6px;
2073
}
2074
2075
notebook > header.top tabs, notebook > header.bottom tabs {
2076
padding-left: 8px;
2077
padding-right: 8px;
2078
}
2079
2080
notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child {
2081
margin-left: 0;
2082
}
2083
2084
notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child {
2085
margin-right: 0;
2086
}
2087
2088
notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page {
2089
margin: 0 -1px;
2090
border-style: none solid;
2091
}
2092
2093
notebook > header.left tabs, notebook > header.right tabs {
2094
padding-top: 8px;
2095
padding-bottom: 8px;
2096
}
2097
2098
notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child {
2099
margin-top: 0;
2100
}
2101
2102
notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child {
2103
margin-bottom: 0;
2104
}
2105
2106
notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page {
2107
margin: -1px 0;
2108
border-style: solid none;
2109
}
2110
2111
notebook > stack:not(:only-child) {
2112
background-color: #FFFFFF;
2113
}
2114
2115
/**************
2116
* Scrollbars *
2117
**************/
2118
scrollbar {
2119
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
2120
background-color: #FFFFFF;
2121
background-clip: padding-box;
2122
}
2123
2124
* {
2125
-GtkScrollbar-has-backward-stepper: false;
2126
-GtkScrollbar-has-forward-stepper: false;
2127
}
2128
2129
scrollbar.top {
2130
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2131
}
2132
2133
scrollbar.bottom {
2134
border-top: 1px solid rgba(0, 0, 0, 0.1);
2135
}
2136
2137
scrollbar.left {
2138
border-right: 1px solid rgba(0, 0, 0, 0.1);
2139
}
2140
2141
scrollbar.right {
2142
border-left: 1px solid rgba(0, 0, 0, 0.1);
2143
}
2144
2145
scrollbar slider {
2146
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0;
2147
min-width: 8px;
2148
min-height: 8px;
2149
border: 4px solid transparent;
2150
border-radius: 9999px;
2151
background-clip: padding-box;
2152
background-color: rgba(0, 0, 0, 0.38);
2153
}
2154
2155
scrollbar slider:hover {
2156
background-color: rgba(0, 0, 0, 0.54);
2157
}
2158
2159
scrollbar slider:active {
2160
background-color: rgba(0, 0, 0, 0.87);
2161
}
2162
2163
scrollbar slider:disabled {
2164
background-color: rgba(0, 0, 0, 0.26);
2165
}
2166
2167
scrollbar.fine-tune slider {
2168
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0;
2169
min-width: 4px;
2170
min-height: 4px;
2171
}
2172
2173
scrollbar.fine-tune.horizontal slider {
2174
margin: 2px 0;
2175
}
2176
2177
scrollbar.fine-tune.vertical slider {
2178
margin: 0 2px;
2179
}
2180
2181
scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
2182
border-color: transparent;
2183
background-color: transparent;
2184
}
2185
2186
scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
2187
min-width: 4px;
2188
min-height: 4px;
2189
margin: 3px;
2190
border: 1px solid rgba(255, 255, 255, 0.3);
2191
}
2192
2193
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
2194
min-width: 4px;
2195
min-height: 4px;
2196
margin: 3px;
2197
border: 1px solid rgba(255, 255, 255, 0.3);
2198
border-radius: 9999px;
2199
background-color: rgba(0, 0, 0, 0.38);
2200
background-clip: padding-box;
2201
-gtk-icon-source: none;
2202
}
2203
2204
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled {
2205
background-color: rgba(0, 0, 0, 0.26);
2206
}
2207
2208
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider {
2209
min-width: 24px;
2210
}
2211
2212
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button {
2213
min-width: 8px;
2214
}
2215
2216
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider {
2217
min-height: 24px;
2218
}
2219
2220
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button {
2221
min-height: 8px;
2222
}
2223
2224
scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
2225
background-color: rgba(255, 255, 255, 0.9);
2226
}
2227
2228
scrollbar.horizontal slider {
2229
min-width: 24px;
2230
}
2231
2232
scrollbar.vertical slider {
2233
min-height: 24px;
2234
}
2235
2236
scrollbar button {
2237
min-width: 16px;
2238
min-height: 16px;
2239
padding: 0;
2240
border-radius: 0;
2241
}
2242
2243
scrollbar.vertical button.down {
2244
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
2245
}
2246
2247
scrollbar.vertical button.up {
2248
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
2249
}
2250
2251
scrollbar.horizontal button.down {
2252
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
2253
}
2254
2255
scrollbar.horizontal button.up {
2256
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
2257
}
2258
2259
/**********
2260
* Switch *
2261
**********/
2262
switch {
2263
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
2264
margin: 6px 0;
2265
padding: 0 2px;
2266
border: 4px solid transparent;
2267
border-radius: 9999px;
2268
background-color: rgba(0, 0, 0, 0.26);
2269
background-clip: padding-box;
2270
font-size: 0;
2271
}
2272
2273
switch:disabled {
2274
background-color: rgba(0, 0, 0, 0.12);
2275
}
2276
2277
switch:checked {
2278
background-color: rgba(255, 64, 129, 0.5);
2279
}
2280
2281
switch:checked:disabled {
2282
background-color: rgba(255, 64, 129, 0.3);
2283
}
2284
2285
switch slider {
2286
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
2287
min-width: 20px;
2288
min-height: 20px;
2289
margin: -3px -2px;
2290
border-radius: 9999px;
2291
-gtk-outline-radius: 9999px;
2292
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2293
background-color: #FFFFFF;
2294
}
2295
2296
switch:hover slider {
2297
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
2298
}
2299
2300
switch:checked slider {
2301
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1), background-image 0, background-color 0.00001s 0.3s;
2302
animation: needs_attention 0.3s cubic-bezier(0, 0, 0.2, 1);
2303
background-color: #FF4081;
2304
color: #FFFFFF;
2305
}
2306
2307
switch:disabled slider {
2308
background-color: #FAFAFA;
2309
}
2310
2311
switch:checked:disabled slider {
2312
animation: none;
2313
}
2314
2315
/*************************
2316
* Check and Radio items *
2317
*************************/
2318
.view.content-view.check:not(list),
2319
.content-view .tile check:not(list) {
2320
min-height: 40px;
2321
min-width: 40px;
2322
margin: 0;
2323
padding: 0;
2324
box-shadow: none;
2325
background-color: transparent;
2326
background-image: none;
2327
-gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2328
}
2329
2330
.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active,
2331
.content-view .tile check:not(list):hover,
2332
.content-view .tile check:not(list):active {
2333
-gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
2334
}
2335
2336
.view.content-view.check:not(list),
2337
.content-view .tile check:not(list) {
2338
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png"));
2339
}
2340
2341
.view.content-view.check:not(list):checked,
2342
.content-view .tile check:not(list):checked {
2343
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png"));
2344
}
2345
2346
checkbutton.text-button,
2347
radiobutton.text-button {
2348
padding: 2px;
2349
outline-offset: 0;
2350
}
2351
2352
checkbutton.text-button label:not(:only-child),
2353
radiobutton.text-button label:not(:only-child) {
2354
margin: 0 4px;
2355
}
2356
2357
check,
2358
radio {
2359
min-height: 24px;
2360
min-width: 24px;
2361
margin: -10px;
2362
padding: 10px;
2363
}
2364
2365
check:checked, check:indeterminate,
2366
radio:checked,
2367
radio:indeterminate {
2368
color: #FF4081;
2369
}
2370
2371
check:checked:disabled, check:indeterminate:disabled,
2372
radio:checked:disabled,
2373
radio:indeterminate:disabled {
2374
color: rgba(255, 64, 129, 0.5);
2375
}
2376
2377
row:selected check:not(:checked):not(:indeterminate), row:selected
2378
radio:not(:checked):not(:indeterminate) {
2379
color: rgba(255, 255, 255, 0.7);
2380
}
2381
2382
row:selected check:not(:checked):not(:indeterminate):hover, row:selected check:not(:checked):not(:indeterminate):active, row:selected
2383
radio:not(:checked):not(:indeterminate):hover, row:selected
2384
radio:not(:checked):not(:indeterminate):active {
2385
color: #FFFFFF;
2386
}
2387
2388
row:selected check:not(:checked):not(:indeterminate):disabled, row:selected
2389
radio:not(:checked):not(:indeterminate):disabled {
2390
color: rgba(255, 255, 255, 0.3);
2391
}
2392
2393
popover check, popover check:hover, popover check:disabled, popover
2394
radio, popover
2395
radio:hover, popover
2396
radio:disabled {
2397
box-shadow: none;
2398
background-image: none;
2399
}
2400
2401
popover check:not(:checked):not(:indeterminate):not(:disabled), popover
2402
radio:not(:checked):not(:indeterminate):not(:disabled) {
2403
color: rgba(0, 0, 0, 0.54);
2404
}
2405
2406
popover check.left:dir(rtl), popover
2407
radio.left:dir(rtl) {
2408
margin-left: -16px;
2409
margin-right: -8px;
2410
}
2411
2412
popover check.right:dir(ltr), popover
2413
radio.right:dir(ltr) {
2414
margin-left: -8px;
2415
margin-right: -16px;
2416
}
2417
2418
menu menuitem check, menu menuitem
2419
radio {
2420
transition: none;
2421
min-height: 16px;
2422
min-width: 16px;
2423
margin: 0;
2424
padding: 0;
2425
}
2426
2427
menu menuitem check:dir(ltr), menu menuitem
2428
radio:dir(ltr) {
2429
margin-right: 8px;
2430
}
2431
2432
menu menuitem check:dir(rtl), menu menuitem
2433
radio:dir(rtl) {
2434
margin-left: 8px;
2435
}
2436
2437
menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem
2438
radio:not(:checked):not(:indeterminate):not(:disabled) {
2439
color: rgba(0, 0, 0, 0.54);
2440
}
2441
2442
menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem
2443
radio, menu menuitem
2444
radio:hover, menu menuitem
2445
radio:disabled {
2446
box-shadow: none;
2447
}
2448
2449
2450
check {
2451
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.symbolic.png")));
2452
}
2453
2454
2455
check:checked {
2456
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.symbolic.png")));
2457
}
2458
2459
2460
check:indeterminate {
2461
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.symbolic.png")));
2462
}
2463
2464
2465
radio {
2466
border-image-slice: 22;
2467
border-image-width: 22px;
2468
}
2469
2470
2471
radio {
2472
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.symbolic.png")));
2473
}
2474
2475
2476
radio:indeterminate {
2477
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.symbolic.png")));
2478
}
2479
2480
2481
radio {
2482
border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent));
2483
}
2484
2485
2486
radio:checked:not(:indeterminate) {
2487
border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(#FF4081), to(transparent));
2488
}
2489
2490
2491
radio:checked:not(:indeterminate):disabled {
2492
border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(rgba(255, 64, 129, 0.5)), to(transparent));
2493
}
2494
2495
window.background:not(.csd) > widget > checkbutton > check,
2496
menu menuitem check {
2497
border-radius: 2px;
2498
-gtk-outline-radius: 2px;
2499
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.symbolic.png")));
2500
}
2501
2502
window.background:not(.csd) > widget > checkbutton > check:checked,
2503
menu menuitem check:checked {
2504
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.symbolic.png")));
2505
}
2506
2507
window.background:not(.csd) > widget > checkbutton > check:indeterminate,
2508
menu menuitem check:indeterminate {
2509
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.symbolic.png")));
2510
}
2511
2512
window.background:not(.csd) > widget > radiobutton > radio,
2513
menu menuitem radio {
2514
border-image: none;
2515
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.symbolic.png")));
2516
}
2517
2518
window.background:not(.csd) > widget > radiobutton > radio:checked,
2519
menu menuitem radio:checked {
2520
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.symbolic.png")));
2521
}
2522
2523
window.background:not(.csd) > widget > radiobutton > radio:indeterminate,
2524
menu menuitem radio:indeterminate {
2525
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.symbolic.png")));
2526
}
2527
2528
check:not(:checked):active {
2529
-gtk-icon-transform: rotate(90deg);
2530
}
2531
2532
check:not(:checked):indeterminate:active,
2533
radio:not(:checked):indeterminate:active {
2534
-gtk-icon-transform: scaleX(-1);
2535
}
2536
2537
check:not(:checked),
2538
radio:not(:checked) {
2539
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0.5s cubic-bezier(0, 0, 0.2, 1), background-image 1s cubic-bezier(0, 0, 0.2, 1), -gtk-icon-transform 0;
2540
}
2541
2542
check:not(:checked):active,
2543
radio:not(:checked):active {
2544
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0, -gtk-icon-transform 0;
2545
}
2546
2547
menu menuitem check:not(:checked), menu menuitem
2548
radio:not(:checked) {
2549
transition: none;
2550
}
2551
2552
treeview.view check,
2553
treeview.view radio {
2554
padding: 0;
2555
}
2556
2557
treeview.view check:hover,
2558
treeview.view radio:hover {
2559
box-shadow: inset 0 0 0 9999px alpha(rgba(0, 0, 0, 0.87), 0.05);
2560
}
2561
2562
treeview.view check:hover:disabled,
2563
treeview.view radio:hover:disabled {
2564
box-shadow: none;
2565
}
2566
2567
treeview.view check:hover:selected,
2568
treeview.view radio:hover:selected {
2569
box-shadow: inset 0 0 0 9999px alpha(#FFFFFF, 0.05);
2570
}
2571
2572
treeview.view check,
2573
treeview.view radio {
2574
color: rgba(0, 0, 0, 0.54);
2575
}
2576
2577
treeview.view check:hover, treeview.view check:active,
2578
treeview.view radio:hover,
2579
treeview.view radio:active {
2580
color: rgba(0, 0, 0, 0.87);
2581
}
2582
2583
treeview.view check:disabled,
2584
treeview.view radio:disabled {
2585
color: rgba(0, 0, 0, 0.26);
2586
}
2587
2588
treeview.view check:checked, treeview.view check:indeterminate,
2589
treeview.view radio:checked,
2590
treeview.view radio:indeterminate {
2591
color: #FF4081;
2592
}
2593
2594
treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled,
2595
treeview.view radio:checked:disabled,
2596
treeview.view radio:indeterminate:disabled {
2597
color: rgba(255, 64, 129, 0.5);
2598
}
2599
2600
treeview.view check:selected,
2601
treeview.view radio:selected {
2602
color: rgba(255, 255, 255, 0.7);
2603
}
2604
2605
treeview.view check:selected:hover, treeview.view check:selected:active,
2606
treeview.view radio:selected:hover,
2607
treeview.view radio:selected:active {
2608
color: #FFFFFF;
2609
}
2610
2611
treeview.view check:selected:disabled,
2612
treeview.view radio:selected:disabled {
2613
color: rgba(255, 255, 255, 0.3);
2614
}
2615
2616
treeview.view check:selected:checked, treeview.view check:selected:indeterminate,
2617
treeview.view radio:selected:checked,
2618
treeview.view radio:selected:indeterminate {
2619
color: #FF4081;
2620
}
2621
2622
treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled,
2623
treeview.view radio:selected:checked:disabled,
2624
treeview.view radio:selected:indeterminate:disabled {
2625
color: rgba(255, 64, 129, 0.5);
2626
}
2627
2628
treeview.view radio:checked {
2629
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic.symbolic.png")));
2630
border-image: none;
2631
}
2632
2633
/************
2634
* GtkScale *
2635
************/
2636
scale {
2637
min-height: 8px;
2638
min-width: 8px;
2639
padding: 12px;
2640
}
2641
2642
scale * {
2643
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
2644
}
2645
2646
scale slider {
2647
min-height: 24px;
2648
min-width: 24px;
2649
margin: -11px;
2650
}
2651
2652
scale trough {
2653
outline-offset: 2px;
2654
background-color: rgba(0, 0, 0, 0.26);
2655
}
2656
2657
scale trough:disabled {
2658
background-color: rgba(0, 0, 0, 0.12);
2659
}
2660
2661
scale highlight {
2662
background-color: #FF4081;
2663
}
2664
2665
scale highlight:disabled {
2666
background-color: transparent;
2667
}
2668
2669
scale fill {
2670
background-color: rgba(0, 0, 0, 0.26);
2671
}
2672
2673
scale fill:disabled {
2674
background-color: transparent;
2675
}
2676
2677
scale slider {
2678
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
2679
background-repeat: no-repeat;
2680
background-position: center;
2681
background-size: calc(100% - 10px);
2682
}
2683
2684
scale slider {
2685
background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png"));
2686
}
2687
2688
scale slider:disabled {
2689
background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png"));
2690
}
2691
2692
scale slider:hover {
2693
background-size: calc(100% - 8px);
2694
}
2695
2696
scale slider:active {
2697
background-size: calc(100% - 6px);
2698
}
2699
2700
scale.fine-tune slider {
2701
background-size: calc(100% - 12px);
2702
}
2703
2704
scale value {
2705
color: rgba(0, 0, 0, 0.38);
2706
}
2707
2708
scale marks {
2709
color: rgba(0, 0, 0, 0.26);
2710
}
2711
2712
scale marks.top {
2713
margin-bottom: 8px;
2714
margin-top: -16px;
2715
}
2716
2717
scale marks.bottom {
2718
margin-top: 8px;
2719
margin-bottom: -16px;
2720
}
2721
2722
scale marks.top {
2723
margin-right: 8px;
2724
margin-left: -16px;
2725
}
2726
2727
scale marks.bottom {
2728
margin-left: 8px;
2729
margin-right: -16px;
2730
}
2731
2732
scale.horizontal indicator {
2733
min-height: 8px;
2734
min-width: 1px;
2735
}
2736
2737
scale.vertical indicator {
2738
min-height: 1px;
2739
min-width: 8px;
2740
}
2741
2742
scale.horizontal.marks-before:not(.marks-after) slider {
2743
min-height: 30px;
2744
min-width: 24px;
2745
margin-top: -17px;
2746
background-position: center calc(100% - 5px);
2747
}
2748
2749
scale.horizontal.marks-before:not(.marks-after) slider {
2750
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png"));
2751
}
2752
2753
scale.horizontal.marks-before:not(.marks-after) slider:disabled {
2754
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png"));
2755
}
2756
2757
scale.horizontal.marks-before:not(.marks-after) slider:hover {
2758
background-position: center calc(100% - 4px);
2759
}
2760
2761
scale.horizontal.marks-before:not(.marks-after) slider:active {
2762
background-position: center calc(100% - 3px);
2763
}
2764
2765
scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
2766
background-position: center calc(100% - 6px);
2767
}
2768
2769
scale.horizontal.marks-after:not(.marks-before) slider {
2770
min-height: 30px;
2771
min-width: 24px;
2772
margin-bottom: -17px;
2773
background-position: center calc(5px);
2774
}
2775
2776
scale.horizontal.marks-after:not(.marks-before) slider {
2777
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png"));
2778
}
2779
2780
scale.horizontal.marks-after:not(.marks-before) slider:disabled {
2781
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png"));
2782
}
2783
2784
scale.horizontal.marks-after:not(.marks-before) slider:hover {
2785
background-position: center calc(4px);
2786
}
2787
2788
scale.horizontal.marks-after:not(.marks-before) slider:active {
2789
background-position: center calc(3px);
2790
}
2791
2792
scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
2793
background-position: center calc(6px);
2794
}
2795
2796
scale.vertical.marks-before:not(.marks-after) slider {
2797
min-height: 24px;
2798
min-width: 30px;
2799
margin-left: -17px;
2800
background-position: calc(5px) center;
2801
}
2802
2803
scale.vertical.marks-before:not(.marks-after) slider {
2804
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png"));
2805
}
2806
2807
scale.vertical.marks-before:not(.marks-after) slider:disabled {
2808
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png"));
2809
}
2810
2811
scale.vertical.marks-before:not(.marks-after) slider:hover {
2812
background-position: calc(4px) center;
2813
}
2814
2815
scale.vertical.marks-before:not(.marks-after) slider:active {
2816
background-position: calc(3px) center;
2817
}
2818
2819
scale.vertical.marks-before:not(.marks-after).fine-tune slider {
2820
background-position: calc(6px) center;
2821
}
2822
2823
scale.vertical.marks-after:not(.marks-before) slider {
2824
min-height: 24px;
2825
min-width: 30px;
2826
margin-right: -17px;
2827
background-position: calc(100% - 5px) center;
2828
}
2829
2830
scale.vertical.marks-after:not(.marks-before) slider {
2831
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png"));
2832
}
2833
2834
scale.vertical.marks-after:not(.marks-before) slider:disabled {
2835
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png"));
2836
}
2837
2838
scale.vertical.marks-after:not(.marks-before) slider:hover {
2839
background-position: calc(100% - 4px) center;
2840
}
2841
2842
scale.vertical.marks-after:not(.marks-before) slider:active {
2843
background-position: calc(100% - 3px) center;
2844
}
2845
2846
scale.vertical.marks-after:not(.marks-before).fine-tune slider {
2847
background-position: calc(100% - 6px) center;
2848
}
2849
2850
scale.color {
2851
min-height: 0;
2852
min-width: 0;
2853
}
2854
2855
scale.color.horizontal {
2856
padding: 0 0 12px 0;
2857
}
2858
2859
scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) {
2860
margin-bottom: -12px;
2861
margin-top: -2px;
2862
}
2863
2864
scale.color.vertical:dir(ltr) {
2865
padding: 0 0 0 12px;
2866
}
2867
2868
scale.color.vertical:dir(ltr) slider {
2869
margin-left: -12px;
2870
margin-right: -2px;
2871
}
2872
2873
scale.color.vertical:dir(rtl) {
2874
padding: 0 12px 0 0;
2875
}
2876
2877
scale.color.vertical:dir(rtl) slider {
2878
margin-right: -12px;
2879
margin-left: -2px;
2880
}
2881
2882
/*****************
2883
* Progress bars *
2884
*****************/
2885
progressbar {
2886
color: rgba(0, 0, 0, 0.38);
2887
font-size: smaller;
2888
}
2889
2890
progressbar.horizontal trough,
2891
progressbar.horizontal progress {
2892
min-height: 4px;
2893
}
2894
2895
progressbar.vertical trough,
2896
progressbar.vertical progress {
2897
min-width: 4px;
2898
}
2899
2900
progressbar trough {
2901
background-color: rgba(66, 165, 245, 0.3);
2902
}
2903
2904
progressbar progress {
2905
background-color: #42A5F5;
2906
}
2907
2908
progressbar trough.empty progress {
2909
all: unset;
2910
}
2911
2912
/*************
2913
* Level Bar *
2914
*************/
2915
levelbar block {
2916
min-width: 32px;
2917
min-height: 4px;
2918
}
2919
2920
levelbar.vertical block {
2921
min-width: 4px;
2922
min-height: 32px;
2923
}
2924
2925
levelbar trough {
2926
padding: 2px;
2927
border-radius: 2px;
2928
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2929
background-color: #FFFFFF;
2930
}
2931
2932
levelbar trough:disabled {
2933
background-color: #FAFAFA;
2934
}
2935
2936
levelbar.horizontal.discrete block {
2937
margin: 0 1px;
2938
}
2939
2940
levelbar.horizontal.discrete trough {
2941
padding: 2px 1px;
2942
}
2943
2944
levelbar.vertical.discrete block {
2945
margin: 1px 0;
2946
}
2947
2948
levelbar.vertical.discrete trough {
2949
padding: 1px 2px;
2950
}
2951
2952
levelbar block.low {
2953
background-color: #FF6D00;
2954
}
2955
2956
levelbar block.high, levelbar block:not(.empty) {
2957
background-color: #42A5F5;
2958
}
2959
2960
levelbar block.full {
2961
background-color: #00C853;
2962
}
2963
2964
levelbar block.empty {
2965
background-color: rgba(0, 0, 0, 0.12);
2966
}
2967
2968
/****************
2969
* Print dialog *
2970
*****************/
2971
printdialog paper {
2972
padding: 0;
2973
border: 1px solid rgba(0, 0, 0, 0.1);
2974
background-color: #FFFFFF;
2975
color: rgba(0, 0, 0, 0.87);
2976
}
2977
2978
printdialog .dialog-action-box {
2979
margin: 12px;
2980
}
2981
2982
/**********
2983
* Frames *
2984
**********/
2985
frame > border,
2986
.frame {
2987
margin: 0;
2988
padding: 0;
2989
border: 1px solid rgba(0, 0, 0, 0.1);
2990
border-radius: 0;
2991
box-shadow: none;
2992
}
2993
2994
frame > border.flat,
2995
.frame.flat,
2996
frame.flat > border {
2997
border-style: none;
2998
}
2999
3000
actionbar > revealer > box {
3001
padding: 6px;
3002
border-top: 1px solid rgba(0, 0, 0, 0.1);
3003
}
3004
3005
scrolledwindow viewport.frame {
3006
border-style: none;
3007
}
3008
3009
overshoot.top {
3010
background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
3011
background-repeat: no-repeat;
3012
background-position: center top;
3013
background-color: transparent;
3014
border: none;
3015
box-shadow: none;
3016
}
3017
3018
overshoot.bottom {
3019
background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
3020
background-repeat: no-repeat;
3021
background-position: center bottom;
3022
background-color: transparent;
3023
border: none;
3024
box-shadow: none;
3025
}
3026
3027
overshoot.left {
3028
background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
3029
background-repeat: no-repeat;
3030
background-position: left center;
3031
background-color: transparent;
3032
border: none;
3033
box-shadow: none;
3034
}
3035
3036
overshoot.right {
3037
background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
3038
background-repeat: no-repeat;
3039
background-position: right center;
3040
background-color: transparent;
3041
border: none;
3042
box-shadow: none;
3043
}
3044
3045
undershoot.top {
3046
background-color: transparent;
3047
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.26) 50%);
3048
padding-top: 1px;
3049
background-size: 12px 1px;
3050
background-repeat: repeat-x;
3051
background-origin: content-box;
3052
background-position: left top;
3053
}
3054
3055
undershoot.bottom {
3056
background-color: transparent;
3057
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.26) 50%);
3058
padding-bottom: 1px;
3059
background-size: 12px 1px;
3060
background-repeat: repeat-x;
3061
background-origin: content-box;
3062
background-position: left bottom;
3063
}
3064
3065
undershoot.left {
3066
background-color: transparent;
3067
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.26) 50%);
3068
padding-left: 1px;
3069
background-size: 1px 12px;
3070
background-repeat: repeat-y;
3071
background-origin: content-box;
3072
background-position: left top;
3073
}
3074
3075
undershoot.right {
3076
background-color: transparent;
3077
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.26) 50%);
3078
padding-right: 1px;
3079
background-size: 1px 12px;
3080
background-repeat: repeat-y;
3081
background-origin: content-box;
3082
background-position: right top;
3083
}
3084
3085
junction {
3086
border-style: solid none none solid;
3087
border-width: 1px;
3088
border-color: rgba(0, 0, 0, 0.1);
3089
background-color: #FFFFFF;
3090
}
3091
3092
junction:dir(rtl) {
3093
border-style: solid solid none none;
3094
}
3095
3096
separator {
3097
min-width: 1px;
3098
min-height: 1px;
3099
background-color: rgba(0, 0, 0, 0.1);
3100
}
3101
3102
3103
button.font separator,
3104
button.file separator, .tweak-categories separator, preferences stacksidebar.sidebar list separator {
3105
min-width: 0;
3106
min-height: 0;
3107
background-color: transparent;
3108
}
3109
3110
/*********
3111
* Lists *
3112
*********/
3113
list {
3114
border-color: rgba(0, 0, 0, 0.1);
3115
background-color: #FFFFFF;
3116
}
3117
3118
list row {
3119
padding: 2px;
3120
}
3121
3122
row.activatable, .view, treeview.view header button, .budgie-menu button {
3123
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0.5s cubic-bezier(0, 0, 0.2, 1), background-image 1s cubic-bezier(0, 0, 0.2, 1);
3124
box-shadow: inset 0 0 0 9999px transparent;
3125
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
3126
background-repeat: no-repeat;
3127
background-position: center;
3128
background-size: 1000% 1000%;
3129
}
3130
3131
row.activatable:hover, .view:hover, treeview.view header button:hover, .budgie-menu button:hover {
3132
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0, background-size 0.5s cubic-bezier(0, 0, 0.2, 1), background-image 1s cubic-bezier(0, 0, 0.2, 1);
3133
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05);
3134
}
3135
3136
row.activatable.has-open-popup, .has-open-popup.view, treeview.view header button.has-open-popup, .budgie-menu button.has-open-popup, row.activatable:active, .view:active, treeview.view header button:active, .budgie-menu button:active {
3137
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0;
3138
animation: ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
3139
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15);
3140
background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%);
3141
background-size: 0% 0%;
3142
}
3143
3144
/*********************
3145
* App Notifications *
3146
*********************/
3147
.app-notification {
3148
margin: 8px;
3149
}
3150
3151
.app-notification.frame,
3152
.app-notification border {
3153
border-style: none;
3154
}
3155
3156
/*************
3157
* Expanders *
3158
*************/
3159
expander arrow {
3160
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
3161
min-width: 16px;
3162
min-height: 16px;
3163
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
3164
-gtk-icon-transform: rotate(-90deg);
3165
color: rgba(0, 0, 0, 0.54);
3166
}
3167
3168
expander arrow:dir(rtl) {
3169
-gtk-icon-transform: rotate(90deg);
3170
}
3171
3172
expander arrow:checked {
3173
-gtk-icon-transform: unset;
3174
}
3175
3176
expander arrow:hover, expander arrow:active {
3177
color: rgba(0, 0, 0, 0.87);
3178
}
3179
3180
expander arrow:disabled {
3181
color: rgba(0, 0, 0, 0.26);
3182
}
3183
3184
expander arrow:selected {
3185
color: rgba(255, 255, 255, 0.7);
3186
}
3187
3188
expander arrow:selected:hover, expander arrow:selected:active {
3189
color: #FFFFFF;
3190
}
3191
3192
expander arrow:selected:disabled {
3193
color: rgba(255, 255, 255, 0.3);
3194
}
3195
3196
/************
3197
* Calendar *
3198
************/
3199
calendar {
3200
padding: 1px;
3201
border: 1px solid rgba(0, 0, 0, 0.1);
3202
color: rgba(0, 0, 0, 0.87);
3203
}
3204
3205
calendar:disabled {
3206
color: rgba(0, 0, 0, 0.38);
3207
}
3208
3209
calendar:selected {
3210
border-radius: 3px;
3211
}
3212
3213
calendar.header {
3214
border-style: none none solid;
3215
border-radius: 0;
3216
}
3217
3218
calendar.highlight {
3219
color: rgba(0, 0, 0, 0.54);
3220
font-weight: 500;
3221
}
3222
3223
calendar:indeterminate {
3224
color: rgba(0, 0, 0, 0.26);
3225
}
3226
3227
/***********
3228
* Dialogs *
3229
***********/
3230
messagedialog.background {
3231
background-color: #FAFAFA;
3232
}
3233
3234
messagedialog .titlebar {
3235
min-height: 20px;
3236
border-style: none;
3237
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
3238
background-color: #FAFAFA;
3239
color: rgba(0, 0, 0, 0.87);
3240
}
3241
3242
messagedialog .titlebar:backdrop {
3243
color: rgba(0, 0, 0, 0.54);
3244
}
3245
3246
messagedialog.csd.background {
3247
border-bottom-left-radius: 2px;
3248
border-bottom-right-radius: 2px;
3249
}
3250
3251
messagedialog.csd .dialog-action-area button {
3252
padding: 8px 16px;
3253
border-top: 1px solid rgba(0, 0, 0, 0.1);
3254
border-radius: 0;
3255
}
3256
3257
messagedialog.csd .dialog-action-area button:first-child {
3258
border-bottom-left-radius: 2px;
3259
}
3260
3261
messagedialog.csd .dialog-action-area button:last-child {
3262
border-bottom-right-radius: 2px;
3263
}
3264
3265
filechooser .dialog-action-box {
3266
border-top: 1px solid rgba(0, 0, 0, 0.1);
3267
}
3268
3269
filechooser #pathbarbox {
3270
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3271
background-color: #F5F5F5;
3272
}
3273
3274
filechooserbutton:drop(active) {
3275
box-shadow: none;
3276
}
3277
3278
/***********
3279
* Sidebar *
3280
***********/
3281
.sidebar {
3282
border-style: none;
3283
background-color: #FAFAFA;
3284
}
3285
3286
stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) {
3287
border-right: 1px solid rgba(0, 0, 0, 0.1);
3288
border-left-style: none;
3289
}
3290
3291
stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right {
3292
border-left: 1px solid rgba(0, 0, 0, 0.1);
3293
border-right-style: none;
3294
}
3295
3296
.sidebar list {
3297
background-color: transparent;
3298
}
3299
3300
paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar {
3301
border-style: none;
3302
}
3303
3304
stacksidebar row {
3305
padding: 10px 4px;
3306
}
3307
3308
stacksidebar row > label {
3309
padding-left: 6px;
3310
padding-right: 6px;
3311
}
3312
3313
/****************
3314
* File chooser *
3315
****************/
3316
placessidebar > viewport.frame {
3317
border-style: none;
3318
}
3319
3320
placessidebar list {
3321
padding: 1px 0 4px;
3322
}
3323
3324
placessidebar row {
3325
min-height: 32px;
3326
margin: -1px 0;
3327
padding: 0;
3328
}
3329
3330
placessidebar row > revealer {
3331
padding: 0 12px;
3332
}
3333
3334
placessidebar row:selected {
3335
color: #FFFFFF;
3336
}
3337
3338
placessidebar row:disabled {
3339
color: rgba(0, 0, 0, 0.38);
3340
}
3341
3342
placessidebar row image.sidebar-icon {
3343
color: rgba(0, 0, 0, 0.54);
3344
}
3345
3346
placessidebar row image.sidebar-icon:dir(ltr) {
3347
padding-right: 8px;
3348
}
3349
3350
placessidebar row image.sidebar-icon:dir(rtl) {
3351
padding-left: 8px;
3352
}
3353
3354
placessidebar row:selected image.sidebar-icon {
3355
color: rgba(255, 255, 255, 0.7);
3356
}
3357
3358
placessidebar row label.sidebar-label:dir(ltr) {
3359
padding-right: 2px;
3360
}
3361
3362
placessidebar row label.sidebar-label:dir(rtl) {
3363
padding-left: 2px;
3364
}
3365
3366
placessidebar row.sidebar-placeholder-row {
3367
min-height: 2px;
3368
padding: 0 8px;
3369
background-image: image(#FF4081);
3370
background-clip: content-box;
3371
}
3372
3373
placessidebar row.sidebar-new-bookmark-row {
3374
color: #FF4081;
3375
}
3376
3377
placessidebar row:drop(active):not(:disabled) {
3378
box-shadow: inset 0 0 0 2px #FF4081;
3379
}
3380
3381
placesview .server-list-button > image {
3382
-gtk-icon-transform: rotate(0turn);
3383
}
3384
3385
placesview .server-list-button:checked > image {
3386
-gtk-icon-transform: rotate(-0.5turn);
3387
}
3388
3389
placesview > actionbar > revealer > box > label {
3390
padding-left: 8px;
3391
padding-right: 8px;
3392
}
3393
3394
/*********
3395
* Paned *
3396
*********/
3397
paned > separator {
3398
min-width: 1px;
3399
min-height: 1px;
3400
-gtk-icon-source: none;
3401
border-style: none;
3402
background-color: transparent;
3403
background-image: image(rgba(0, 0, 0, 0.1));
3404
background-size: 1px 1px;
3405
background-clip: content-box;
3406
}
3407
3408
paned > separator.wide {
3409
min-width: 6px;
3410
min-height: 6px;
3411
background-color: #F5F5F5;
3412
background-image: image(rgba(0, 0, 0, 0.1)), image(rgba(0, 0, 0, 0.1));
3413
background-size: 1px 1px, 1px 1px;
3414
}
3415
3416
paned.horizontal > separator {
3417
background-repeat: repeat-y;
3418
}
3419
3420
paned.horizontal > separator:dir(ltr) {
3421
margin: 0 -8px 0 0;
3422
padding: 0 8px 0 0;
3423
background-position: left;
3424
}
3425
3426
paned.horizontal > separator:dir(rtl) {
3427
margin: 0 0 0 -8px;
3428
padding: 0 0 0 8px;
3429
background-position: right;
3430
}
3431
3432
paned.horizontal > separator.wide {
3433
margin: 0;
3434
padding: 0;
3435
background-repeat: repeat-y, repeat-y;
3436
background-position: left, right;
3437
}
3438
3439
paned.vertical > separator {
3440
margin: 0 0 -8px 0;
3441
padding: 0 0 8px 0;
3442
background-repeat: repeat-x;
3443
background-position: top;
3444
}
3445
3446
paned.vertical > separator.wide {
3447
margin: 0;
3448
padding: 0;
3449
background-repeat: repeat-x, repeat-x;
3450
background-position: bottom, top;
3451
}
3452
3453
/**************
3454
* GtkInfoBar *
3455
**************/
3456
infobar {
3457
border-style: none;
3458
}
3459
3460
infobar.info {
3461
background-color: #66BB6A;
3462
}
3463
3464
infobar.question {
3465
background-color: #42A5F5;
3466
}
3467
3468
infobar.warning {
3469
background-color: #FFA726;
3470
}
3471
3472
infobar.error {
3473
background-color: #EF5350;
3474
}
3475
3476
infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error {
3477
color: #FFFFFF;
3478
}
3479
3480
/************
3481
* Tooltips *
3482
************/
3483
tooltip {
3484
border-radius: 2px;
3485
box-shadow: none;
3486
}
3487
3488
tooltip.background {
3489
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
3490
background-color: rgba(255, 255, 255, 0.9);
3491
}
3492
3493
tooltip:not(.csd):not(.unity-csd) {
3494
border: 1px solid rgba(0, 0, 0, 0.1);
3495
border-radius: 3px;
3496
background-clip: padding-box;
3497
}
3498
3499
tooltip decoration {
3500
background-color: transparent;
3501
}
3502
3503
tooltip label {
3504
min-height: 20px;
3505
padding: 0 2px;
3506
}
3507
3508
/*****************
3509
* Color Chooser *
3510
*****************/
3511
colorswatch.top {
3512
border-top-left-radius: 2.5px;
3513
border-top-right-radius: 2.5px;
3514
}
3515
3516
colorswatch.top overlay {
3517
border-top-left-radius: 2px;
3518
border-top-right-radius: 2px;
3519
}
3520
3521
colorswatch.bottom {
3522
border-bottom-left-radius: 2.5px;
3523
border-bottom-right-radius: 2.5px;
3524
}
3525
3526
colorswatch.bottom overlay {
3527
border-bottom-left-radius: 2px;
3528
border-bottom-right-radius: 2px;
3529
}
3530
3531
colorswatch.left, colorswatch:first-child:not(.top) {
3532
border-top-left-radius: 2.5px;
3533
border-bottom-left-radius: 2.5px;
3534
}
3535
3536
colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
3537
border-top-left-radius: 2px;
3538
border-bottom-left-radius: 2px;
3539
}
3540
3541
colorswatch.right, colorswatch:last-child:not(.bottom) {
3542
border-top-right-radius: 2.5px;
3543
border-bottom-right-radius: 2.5px;
3544
}
3545
3546
colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
3547
border-top-right-radius: 2px;
3548
border-bottom-right-radius: 2px;
3549
}
3550
3551
colorswatch.dark overlay {
3552
color: #FFFFFF;
3553
}
3554
3555
colorswatch.light overlay {
3556
color: rgba(0, 0, 0, 0.87);
3557
}
3558
3559
colorswatch.dark {
3560
color: #FFFFFF;
3561
}
3562
3563
colorswatch.light {
3564
color: rgba(0, 0, 0, 0.87);
3565
}
3566
3567
colorswatch:drop(active) {
3568
box-shadow: none;
3569
}
3570
3571
colorswatch:drop(active).light overlay {
3572
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #FF4081;
3573
}
3574
3575
colorswatch:drop(active).dark overlay {
3576
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #FF4081;
3577
}
3578
3579
colorswatch overlay {
3580
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
3581
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
3582
}
3583
3584
colorswatch overlay:hover {
3585
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
3586
}
3587
3588
colorswatch#add-color-button {
3589
border-radius: 2px 2px 0 0;
3590
color: #FFFFFF;
3591
}
3592
3593
colorswatch#add-color-button:only-child {
3594
border-radius: 2px;
3595
}
3596
3597
colorswatch#add-color-button overlay {
3598
background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #42A5F5 75%);
3599
color: #FFFFFF;
3600
}
3601
3602
colorswatch:disabled {
3603
opacity: 0.5;
3604
}
3605
3606
colorswatch:disabled overlay {
3607
box-shadow: none;
3608
}
3609
3610
colorswatch#editor-color-sample {
3611
border-radius: 2.5px;
3612
}
3613
3614
colorswatch#editor-color-sample overlay {
3615
border-radius: 2px;
3616
}
3617
3618
colorchooser .popover.osd {
3619
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
3620
border-radius: 2px;
3621
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
3622
background-color: #FFFFFF;
3623
}
3624
3625
colorchooser .popover.osd:backdrop {
3626
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.4);
3627
}
3628
3629
/********
3630
* Misc *
3631
********/
3632
.content-view {
3633
background-color: #F5F5F5;
3634
}
3635
3636
/**********************
3637
* Window Decorations *
3638
**********************/
3639
decoration {
3640
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
3641
border-radius: 2px 2px 0 0;
3642
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent;
3643
margin: 8px;
3644
}
3645
3646
decoration:backdrop {
3647
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent;
3648
}
3649
3650
.maximized decoration,
3651
.fullscreen decoration,
3652
.tiled decoration {
3653
border-radius: 0;
3654
}
3655
3656
.popup decoration {
3657
box-shadow: none;
3658
}
3659
3660
.ssd decoration {
3661
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
3662
}
3663
3664
.csd.popup decoration {
3665
border-radius: 2px;
3666
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
3667
}
3668
3669
tooltip.csd decoration {
3670
border-radius: 2px;
3671
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
3672
}
3673
3674
messagedialog.csd decoration {
3675
border-radius: 2px;
3676
}
3677
3678
.solid-csd decoration {
3679
margin: 0;
3680
border-radius: 0;
3681
box-shadow: none;
3682
background-color: #E0E0E0;
3683
}
3684
3685
.view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
3686
entry selection, modelbutton.flat:selected,
3687
.menuitem.button.flat:selected, popover.background.menu button:checked,
3688
popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked {
3689
background-color: #42A5F5;
3690
}
3691
3692
row:selected label, label:selected, .view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
3693
entry selection, modelbutton.flat:selected,
3694
.menuitem.button.flat:selected, popover.background.menu button:checked,
3695
popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked {
3696
color: #FFFFFF;
3697
}
3698
3699
row:selected label:disabled, label:disabled:selected, .view selection:disabled, .view:disabled:selected, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled,
3700
entry selection:disabled, modelbutton.flat:disabled:selected,
3701
.menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked,
3702
popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected, text:disabled:selected, .budgie-menu button:disabled:checked {
3703
color: rgba(255, 255, 255, 0.5);
3704
}
3705
3706
.monospace {
3707
font-family: monospace;
3708
}
3709
3710
/**********************
3711
* Touch Copy & Paste *
3712
**********************/
3713
cursor-handle {
3714
border-radius: 9999px;
3715
background-color: #FF4081;
3716
background-image: none;
3717
}
3718
3719
cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) {
3720
padding-left: 6px;
3721
border-top-right-radius: 0;
3722
}
3723
3724
cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) {
3725
padding-right: 6px;
3726
border-top-left-radius: 0;
3727
}
3728
3729
cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) {
3730
-GtkWidget-text-handle-width: 24;
3731
-GtkWidget-text-handle-height: 30;
3732
-gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png"));
3733
}
3734
3735
.context-menu {
3736
font: initial;
3737
}
3738
3739
.keycap {
3740
min-width: 12px;
3741
min-height: 26px;
3742
margin-top: 2px;
3743
padding-bottom: 2px;
3744
padding-left: 8px;
3745
padding-right: 8px;
3746
border: solid 1px rgba(0, 0, 0, 0.1);
3747
border-radius: 3px;
3748
box-shadow: inset 0 -2px rgba(0, 0, 0, 0.1);
3749
background-color: #FFFFFF;
3750
color: rgba(0, 0, 0, 0.87);
3751
font-size: smaller;
3752
}
3753
3754
:not(decoration):not(window):drop(active) {
3755
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
3756
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 2px #FF4081;
3757
caret-color: #FF4081;
3758
}
3759
3760
stackswitcher button.text-button {
3761
min-width: 100px;
3762
}
3763
3764
stackswitcher button.circular,
3765
stackswitcher button.text-button.circular {
3766
min-width: 32px;
3767
min-height: 32px;
3768
padding: 0;
3769
}
3770
3771
/************
3772
* Nautilus *
3773
************/
3774
.nautilus-window,
3775
.nautilus-window notebook,
3776
.nautilus-window notebook > stack {
3777
background-color: #FFFFFF;
3778
}
3779
3780
.nautilus-desktop.nautilus-canvas-item:not(:selected), .caja-desktop.caja-canvas-item:not(:selected) {
3781
color: #FFFFFF;
3782
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
3783
}
3784
3785
@keyframes needs_attention_keyframes {
3786
to {
3787
background-color: alpha(currentColor, 0.3);
3788
}
3789
}
3790
3791
.nautilus-operations-button-needs-attention {
3792
animation: needs_attention_keyframes 0.3s cubic-bezier(0.4, 0, 0.2, 1) 2 alternate;
3793
}
3794
3795
.nautilus-operations-button-needs-attention-multiple {
3796
animation: needs_attention_keyframes 0.3s cubic-bezier(0.4, 0, 0.2, 1) 4 alternate;
3797
}
3798
3799
.nautilus-window .floating-bar {
3800
min-height: 32px;
3801
padding: 0;
3802
border-style: solid solid none;
3803
border-width: 1px;
3804
border-color: rgba(0, 0, 0, 0.1);
3805
border-radius: 3px 3px 0 0;
3806
background-color: #FFFFFF;
3807
background-clip: padding-box;
3808
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), border-width 0;
3809
}
3810
3811
.nautilus-window .floating-bar.bottom.left {
3812
margin-right: 7px;
3813
border-left-style: none;
3814
border-top-left-radius: 0;
3815
}
3816
3817
.nautilus-window .floating-bar.bottom.right {
3818
margin-left: 7px;
3819
border-right-style: none;
3820
border-top-right-radius: 0;
3821
}
3822
3823
.nautilus-window .floating-bar button {
3824
margin: 6px;
3825
}
3826
3827
.disk-space-display.unknown {
3828
background-color: #FF6D00;
3829
}
3830
3831
.disk-space-display.used {
3832
background-color: #42A5F5;
3833
}
3834
3835
.disk-space-display.free {
3836
background-color: rgba(0, 0, 0, 0.12);
3837
}
3838
3839
.nautilus-window searchbar {
3840
border-top: 1px solid rgba(0, 0, 0, 0.1);
3841
}
3842
3843
.nautilus-window .searchbar-container {
3844
margin-top: -1px;
3845
}
3846
3847
.conflict-row:not(:selected) {
3848
background-color: #ffd3b3;
3849
}
3850
3851
.nautilus-window flowboxchild > widget > .icon-item-background {
3852
padding: 4px;
3853
border-radius: 2px;
3854
}
3855
3856
.nautilus-window flowboxchild:selected {
3857
background-color: transparent;
3858
}
3859
3860
.nautilus-window flowboxchild:selected > widget > .icon-item-background {
3861
background-color: #42A5F5;
3862
}
3863
3864
dialog.background > box.dialog-vbox.vertical > grid.horizontal > scrolledwindow.frame {
3865
border-style: none;
3866
}
3867
3868
dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child {
3869
margin: -6px 0 0 -6px;
3870
border-top: 1px solid rgba(0, 0, 0, 0.1);
3871
}
3872
3873
dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > label {
3874
margin: 0 8px;
3875
}
3876
3877
dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > box > button {
3878
border-radius: 0;
3879
}
3880
3881
.nautilus-window > popover.menu:not(:last-child) {
3882
padding: 3px;
3883
}
3884
3885
.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box {
3886
margin-top: -6px;
3887
}
3888
3889
.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box {
3890
margin-bottom: -6px;
3891
}
3892
3893
.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box.linked {
3894
margin-top: 1px;
3895
}
3896
3897
.nautilus-window > popover.menu:not(:last-child) separator {
3898
margin-bottom: -2px;
3899
}
3900
3901
.nautilus-menu-sort-heading {
3902
margin: 1px 3px;
3903
font-weight: 500;
3904
}
3905
3906
.nautilus-menu-sort-heading:disabled {
3907
color: rgba(0, 0, 0, 0.38);
3908
}
3909
3910
.nautilus-window paned > separator {
3911
background-color: #F5F5F5;
3912
}
3913
3914
/*********
3915
* gedit *
3916
*********/
3917
.open-document-selector-name-label {
3918
font-weight: bold;
3919
}
3920
3921
.open-document-selector-path-label {
3922
color: rgba(0, 0, 0, 0.54);
3923
font-size: smaller;
3924
}
3925
3926
.open-document-selector-path-label:selected {
3927
color: rgba(255, 255, 255, 0.7);
3928
}
3929
3930
.gedit-document-panel {
3931
background-color: #FAFAFA;
3932
}
3933
3934
.gedit-document-panel row button.flat {
3935
margin-top: 8px;
3936
margin-bottom: 8px;
3937
}
3938
3939
.gedit-document-panel-group-row:not(:first-child) {
3940
border-top: 1px solid rgba(0, 0, 0, 0.1);
3941
}
3942
3943
.gedit-side-panel-paned statusbar {
3944
border-top: 1px solid rgba(0, 0, 0, 0.1);
3945
}
3946
3947
.gedit-search-slider {
3948
margin: 4px 4px 8px;
3949
}
3950
3951
.gedit-search-slider entry:dir(ltr), .gedit-search-slider entry:dir(rtl) {
3952
border-radius: 2px;
3953
}
3954
3955
.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag, .gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag {
3956
all: unset;
3957
color: rgba(0, 0, 0, 0.38);
3958
}
3959
3960
.gedit-search-slider entry:dir(ltr) {
3961
margin-right: -58px;
3962
padding-right: 58px;
3963
}
3964
3965
.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag {
3966
margin-left: 6px;
3967
}
3968
3969
.gedit-search-slider entry:dir(ltr) image.right {
3970
margin-right: 0;
3971
}
3972
3973
.gedit-search-slider entry:dir(rtl) {
3974
margin-left: -58px;
3975
padding-left: 58px;
3976
}
3977
3978
.gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag {
3979
margin-right: 6px;
3980
}
3981
3982
.gedit-search-slider entry:dir(rtl) image.left {
3983
margin-left: 0;
3984
}
3985
3986
.gedit-search-slider entry.error ~ button {
3987
color: rgba(255, 255, 255, 0.7);
3988
}
3989
3990
.gedit-search-slider entry.error ~ button:hover, .gedit-search-slider entry.error ~ button:active {
3991
color: #FFFFFF;
3992
}
3993
3994
.gedit-search-slider entry.error ~ button:disabled {
3995
color: rgba(255, 255, 255, 0.3);
3996
}
3997
3998
.gedit-search-slider button {
3999
border: solid 6px transparent;
4000
}
4001
4002
.gedit-search-slider button:last-child:dir(ltr), .gedit-search-slider button:not(:first-child):dir(rtl) {
4003
margin-left: -3px;
4004
}
4005
4006
.gedit-search-slider button:first-child:dir(rtl), .gedit-search-slider button:not(:last-child):dir(ltr) {
4007
margin-right: -3px;
4008
}
4009
4010
frame.gedit-map-frame > border:dir(ltr) {
4011
border-style: none none none solid;
4012
}
4013
4014
frame.gedit-map-frame > border:dir(rtl) {
4015
border-style: none solid none none;
4016
}
4017
4018
/**************
4019
* Tweak Tool *
4020
**************/
4021
.tweak-categories {
4022
background-image: image(#FAFAFA);
4023
}
4024
4025
.tweak {
4026
padding: 3px;
4027
}
4028
4029
.tweak.title:hover {
4030
box-shadow: none;
4031
}
4032
4033
.tweak-group-white,
4034
.tweak-white,
4035
.tweak-white:hover {
4036
background-image: image(#FFFFFF);
4037
}
4038
4039
.tweak-startup,
4040
.tweak-startup:hover {
4041
background-image: image(#FFFFFF);
4042
}
4043
4044
.tweak-group-startup {
4045
background-image: image(#FFFFFF);
4046
border: 1px solid rgba(0, 0, 0, 0.1);
4047
}
4048
4049
/***********
4050
* Builder *
4051
***********/
4052
layouttabbar {
4053
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4054
background-color: #F5F5F5;
4055
}
4056
4057
layouttabbar > box > button {
4058
margin: 4px 0;
4059
}
4060
4061
layouttab {
4062
margin: 0 8px;
4063
border-style: none solid;
4064
border-width: 1px;
4065
border-color: rgba(0, 0, 0, 0.1);
4066
box-shadow: inset 0 -2px #42A5F5;
4067
background-color: #FFFFFF;
4068
}
4069
4070
layouttab separator.vertical {
4071
margin: 8px 4px;
4072
}
4073
4074
layouttab button.text-button, layouttab button.image-button, layouttab button {
4075
margin-top: 8px;
4076
margin-bottom: 8px;
4077
padding: 0 4px;
4078
}
4079
4080
layout {
4081
border: 1px solid rgba(0, 0, 0, 0.1);
4082
-PnlDockBin-handle-size: 1;
4083
}
4084
4085
entry.search-missing {
4086
background-color: #DD2C00;
4087
color: #FFFFFF;
4088
}
4089
4090
window.workbench treeview.image {
4091
color: rgba(0, 0, 0, 0.54);
4092
}
4093
4094
window.workbench treeview.image:selected {
4095
color: rgba(255, 255, 255, 0.7);
4096
}
4097
4098
popover.popover-selector list {
4099
padding: 6px;
4100
}
4101
4102
popover.popover-selector list row {
4103
border-radius: 2px;
4104
}
4105
4106
popover.popover-selector list row image:dir(ltr) {
4107
margin-right: 6px;
4108
}
4109
4110
popover.popover-selector list row image:dir(rtl) {
4111
margin-left: 6px;
4112
}
4113
4114
popover.popover-selector list row .accel:dir(ltr) {
4115
margin-left: 6px;
4116
}
4117
4118
popover.popover-selector list row .accel:dir(rtl) {
4119
margin-right: 6px;
4120
}
4121
4122
omnibar.linked:not(.vertical) entry {
4123
border-radius: 2px;
4124
}
4125
4126
omnibar:not(:hover):not(:active) entry {
4127
color: rgba(0, 0, 0, 0.54);
4128
}
4129
4130
popover.omnibar list row:not(:last-child) {
4131
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4132
}
4133
4134
entry.preferences-search {
4135
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
4136
background-color: #FFFFFF;
4137
}
4138
4139
preferences stacksidebar.sidebar list {
4140
background-color: #FAFAFA;
4141
}
4142
4143
preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list {
4144
border-style: none;
4145
}
4146
4147
preferences > box > box:dir(ltr) {
4148
border-right: 1px solid rgba(0, 0, 0, 0.1);
4149
}
4150
4151
preferences > box > box:dir(rtl) {
4152
border-left: 1px solid rgba(0, 0, 0, 0.1);
4153
}
4154
4155
popover.messagepopover.background {
4156
padding: 0;
4157
}
4158
4159
popover.messagepopover .popover-action-area button {
4160
padding: 8px 16px;
4161
border-top: 1px solid rgba(0, 0, 0, 0.1);
4162
border-radius: 0;
4163
}
4164
4165
popover.messagepopover .popover-action-area button:first-child {
4166
border-bottom-left-radius: 2px;
4167
}
4168
4169
popover.messagepopover .popover-action-area button:last-child {
4170
border-bottom-right-radius: 2px;
4171
}
4172
4173
popover.messagepopover .popover-content-area {
4174
margin: 16px;
4175
}
4176
4177
popover.transfers list {
4178
background-color: transparent;
4179
}
4180
4181
popover.transfers list row:not(:first-child) {
4182
border-top: 1px solid rgba(0, 0, 0, 0.1);
4183
}
4184
4185
popover.transfers list row > box {
4186
padding: 10px;
4187
}
4188
4189
dockbin {
4190
border: 1px solid rgba(0, 0, 0, 0.1);
4191
-PnlDockBin-handle-size: 1;
4192
}
4193
4194
dockpaned {
4195
border: 1px solid rgba(0, 0, 0, 0.1);
4196
}
4197
4198
eggsearchbar box.search-bar {
4199
padding: 0 8px;
4200
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4201
background-color: #F5F5F5;
4202
}
4203
4204
docktabstrip {
4205
padding: 0 8px;
4206
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4207
background-color: #F5F5F5;
4208
}
4209
4210
docktab {
4211
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
4212
min-height: 20px;
4213
min-width: 20px;
4214
margin-bottom: -1px;
4215
padding: 6px 6px;
4216
outline-offset: -6px;
4217
border-width: 1px;
4218
border-color: transparent;
4219
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 10%, transparent 0%);
4220
background-repeat: no-repeat;
4221
background-position: center;
4222
background-size: 0% 0%;
4223
color: rgba(0, 0, 0, 0.54);
4224
font-weight: 500;
4225
}
4226
4227
docktab:hover {
4228
box-shadow: inset 0 -2px rgba(0, 0, 0, 0.26);
4229
color: rgba(0, 0, 0, 0.87);
4230
}
4231
4232
docktab:checked {
4233
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0.3s cubic-bezier(0, 0, 0.2, 1), background-image 0.8s cubic-bezier(0, 0, 0.2, 1);
4234
box-shadow: inset 0 -2px #42A5F5;
4235
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
4236
background-size: 1000% 1000%;
4237
color: rgba(0, 0, 0, 0.87);
4238
}
4239
4240
dockoverlayedge {
4241
background-color: #F5F5F5;
4242
}
4243
4244
dockoverlayedge docktabstrip {
4245
padding: 0;
4246
border: none;
4247
}
4248
4249
dockoverlayedge.left-edge docktab:hover {
4250
box-shadow: inset -2px 0 rgba(0, 0, 0, 0.26);
4251
}
4252
4253
dockoverlayedge.left-edge docktab:checked {
4254
box-shadow: inset -2px 0 #42A5F5;
4255
}
4256
4257
dockoverlayedge.right-edge docktab:hover {
4258
box-shadow: inset 2px 0 rgba(0, 0, 0, 0.26);
4259
}
4260
4261
dockoverlayedge.right-edge docktab:checked {
4262
box-shadow: inset 2px 0 #42A5F5;
4263
}
4264
4265
pillbox {
4266
background-color: #F5F5F5;
4267
border-radius: 2px;
4268
}
4269
4270
layoutpane entry.search {
4271
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
4272
background-color: #FFFFFF;
4273
}
4274
4275
editortweak entry.search {
4276
margin-bottom: -1px;
4277
box-shadow: none;
4278
}
4279
4280
.gb-search-entry-occurrences-tag {
4281
box-shadow: none;
4282
background-color: transparent;
4283
}
4284
4285
docktabstrip {
4286
min-height: 39px;
4287
}
4288
4289
window.workbench preferences preferencesgroup list entry {
4290
padding-top: 8px;
4291
padding-bottom: 8px;
4292
}
4293
4294
button.run-arrow-button {
4295
padding-left: 8px;
4296
padding-right: 8px;
4297
}
4298
4299
/**********
4300
* Photos *
4301
**********/
4302
GdMainIconView.content-view {
4303
-GdMainIconView-icon-size: 48;
4304
}
4305
4306
.documents-counter {
4307
margin: 8px;
4308
border-radius: 9999px;
4309
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
4310
background-color: #FF4081;
4311
color: #FFFFFF;
4312
font-weight: bold;
4313
}
4314
4315
.documents-scrolledwin.frame {
4316
border-style: none;
4317
}
4318
4319
.documents-scrolledwin.frame frame.content-view > border {
4320
border-style: none;
4321
}
4322
4323
.photos-fade-in {
4324
opacity: 1;
4325
transition: opacity 0.2s cubic-bezier(0, 0, 0.2, 1);
4326
}
4327
4328
.photos-fade-out {
4329
opacity: 0;
4330
transition: opacity 0.2s cubic-bezier(0, 0, 0.2, 1);
4331
}
4332
4333
overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) {
4334
border-style: none none none solid;
4335
}
4336
4337
overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) {
4338
border-style: none solid none none;
4339
}
4340
4341
/*********
4342
* Music *
4343
*********/
4344
.side-panel:dir(ltr) {
4345
border-style: solid;
4346
border-color: rgba(0, 0, 0, 0.1);
4347
}
4348
4349
.side-panel:dir(rtl) {
4350
border-style: solid;
4351
border-color: rgba(0, 0, 0, 0.1);
4352
}
4353
4354
.side-panel .view {
4355
background-image: image(#FAFAFA);
4356
}
4357
4358
.side-panel .view:hover {
4359
background-image: image(rgba(240, 240, 240, 0.9935));
4360
}
4361
4362
.side-panel .view:selected {
4363
background-image: image(#42A5F5);
4364
}
4365
4366
.side-panel .view:selected:hover {
4367
background-image: image(#4baaf6);
4368
}
4369
4370
.songs-list:hover {
4371
background-image: image(alpha(currentColor, 0.05));
4372
}
4373
4374
frame.documents-dropdown {
4375
margin: 8px;
4376
}
4377
4378
frame.documents-dropdown > border {
4379
border: none;
4380
}
4381
4382
box.vertical > revealer > toolbar.search-bar {
4383
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4384
background-clip: border-box;
4385
}
4386
4387
box.vertical > revealer > toolbar.search-bar button > widget {
4388
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
4389
}
4390
4391
/*********
4392
* To Do *
4393
*********/
4394
taskrow {
4395
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
4396
margin: 0 -8px;
4397
}
4398
4399
taskrow:hover {
4400
transition: none;
4401
}
4402
4403
taskrow label {
4404
margin: 0 8px;
4405
}
4406
4407
taskrow image {
4408
min-width: 16px;
4409
}
4410
4411
task-list-view > box > revealer > box > button {
4412
margin: -4px;
4413
}
4414
4415
/*******
4416
* eog *
4417
*******/
4418
#eog-thumb-nav scrolledwindow {
4419
border-top: none;
4420
}
4421
4422
#eog-thumb-nav button {
4423
-gtk-outline-radius: 2px;
4424
}
4425
4426
/*************
4427
* Evolution *
4428
*************/
4429
frame.taskbar > border {
4430
border-style: solid none none;
4431
}
4432
4433
box.vertical > paned.horizontal notebook widget .frame {
4434
border-style: none;
4435
}
4436
4437
/********
4438
* gitg *
4439
********/
4440
frame.commit-frame > border {
4441
border-style: solid none none;
4442
}
4443
4444
/**************
4445
* Characters *
4446
**************/
4447
box.dialog-vbox scrolledwindow.related {
4448
border: 1px solid rgba(0, 0, 0, 0.1);
4449
}
4450
4451
list.categories {
4452
background-image: image(#FAFAFA);
4453
}
4454
4455
/*********
4456
* Boxes *
4457
*********/
4458
.transparent-bg + stack overlay > label {
4459
min-height: 24px;
4460
padding: 0 4px;
4461
border-radius: 2px;
4462
background-color: rgba(0, 0, 0, 0.3);
4463
color: #FFFFFF;
4464
}
4465
4466
/**************
4467
* Calculator *
4468
**************/
4469
button.title label {
4470
min-height: 32px;
4471
}
4472
4473
/*********
4474
* Tilix *
4475
*********/
4476
overlay > revealer.left > scrolledwindow.frame,
4477
overlay > revealer.right > scrolledwindow.frame {
4478
border-style: none;
4479
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22);
4480
}
4481
4482
overlay > revealer.left > scrolledwindow.frame {
4483
margin-right: 32px;
4484
}
4485
4486
overlay > revealer.right > scrolledwindow.frame {
4487
margin-left: 32px;
4488
}
4489
4490
.terminix-session-sidebar,
4491
.tilix-session-sidebar {
4492
background-image: image(#FAFAFA);
4493
}
4494
4495
button.image-button.session-new-button {
4496
min-width: 28px;
4497
}
4498
4499
/***********
4500
* Eclipse *
4501
***********/
4502
window.background > box.vertical > scrolledwindow > widget toolbar {
4503
padding: 2px;
4504
}
4505
4506
window.background > box.vertical > scrolledwindow > widget toolbar separator,
4507
window.background > box.vertical > scrolledwindow > widget toolbar button {
4508
margin: 2px;
4509
}
4510
4511
window.background > box.vertical > scrolledwindow > widget toolbar button {
4512
border-radius: 2px;
4513
}
4514
4515
/***********
4516
* Firefox *
4517
***********/
4518
window.background:not(.csd) > widget > separator {
4519
color: rgba(0, 0, 0, 0.2);
4520
}
4521
4522
window.background:not(.csd) > widget > scrollbar {
4523
background-clip: border-box;
4524
}
4525
4526
window.background:not(.csd) > widget > scrollbar,
4527
window.background:not(.csd) > widget > frame > border {
4528
border-color: rgba(0, 0, 0, 0.2);
4529
}
4530
4531
window.background:not(.csd) > widget > entry,
4532
window.background:not(.csd) > widget > button > button {
4533
border: 1px solid rgba(0, 0, 0, 0.2);
4534
border-radius: 3px;
4535
box-shadow: none;
4536
}
4537
4538
window.background:not(.csd) > widget > entry {
4539
min-height: 30px;
4540
}
4541
4542
window.background:not(.csd) > widget > entry:focus {
4543
border-color: #42A5F5;
4544
}
4545
4546
window.background:not(.csd) > widget > button > button {
4547
padding: 4px 8px;
4548
background-size: auto;
4549
}
4550
4551
window.background:not(.csd) > widget > button > button:hover {
4552
background-image: image(alpha(currentColor, 0.05));
4553
}
4554
4555
window.background:not(.csd) > widget > button > button:active {
4556
background-image: image(alpha(currentColor, 0.1));
4557
}
4558
4559
window.background:not(.csd) > window > menu,
4560
window.background:not(.csd) > menu > menu {
4561
border: none;
4562
}
4563
4564
window.background:not(.csd) > widget > menubar {
4565
color: rgba(0, 0, 0, 0.54);
4566
}
4567
4568
window.background:not(.csd) > widget > menubar:hover {
4569
color: rgba(0, 0, 0, 0.87);
4570
}
4571
4572
window.background:not(.csd) > widget > menubar:disabled {
4573
color: rgba(0, 0, 0, 0.26);
4574
}
4575
4576
window.background:not(.csd) > widget > frame {
4577
color: rgba(0, 0, 0, 0.2);
4578
}
4579
4580
window.background:not(.csd) > widget > checkbutton > check,
4581
window.background:not(.csd) > widget > radiobutton > radio {
4582
margin: 0;
4583
padding: 0;
4584
}
4585
4586
window.background:not(.csd) > window.background > menu > separator {
4587
color: rgba(0, 0, 0, 0.1);
4588
}
4589
4590
/***********
4591
* Synapse *
4592
***********/
4593
box.vertical > widget > widget:selected {
4594
background-color: #42A5F5;
4595
}
4596
4597
/*********
4598
* Unity *
4599
*********/
4600
UnityDecoration {
4601
-UnityDecoration-extents: 28px 0 0 0;
4602
-UnityDecoration-input-extents: 8px;
4603
-UnityDecoration-shadow-offset-x: 0;
4604
-UnityDecoration-shadow-offset-y: 3px;
4605
-UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48);
4606
-UnityDecoration-active-shadow-radius: 18px;
4607
-UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32);
4608
-UnityDecoration-inactive-shadow-radius: 6px;
4609
-UnityDecoration-glow-size: 8px;
4610
-UnityDecoration-glow-color: #42A5F5;
4611
-UnityDecoration-title-indent: 4px;
4612
-UnityDecoration-title-fade: 32px;
4613
-UnityDecoration-title-alignment: 0.0;
4614
}
4615
4616
UnityDecoration .top {
4617
padding: 0 2px;
4618
border-style: none;
4619
border-radius: 2px 2px 0 0;
4620
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
4621
background-color: #cfcfcf;
4622
color: rgba(0, 0, 0, 0.87);
4623
}
4624
4625
UnityDecoration .top:backdrop {
4626
color: rgba(0, 0, 0, 0.54);
4627
}
4628
4629
UnityDecoration .menuitem {
4630
color: rgba(0, 0, 0, 0.54);
4631
}
4632
4633
UnityDecoration .menuitem:hover {
4634
box-shadow: inset 0 -2px #42A5F5;
4635
background-color: transparent;
4636
color: rgba(0, 0, 0, 0.87);
4637
}
4638
4639
.background:not(.csd) headerbar:not(.titlebar) {
4640
border-radius: 0;
4641
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
4642
}
4643
4644
.background:not(.csd) headerbar:not(.titlebar).inline-toolbar {
4645
border-style: none;
4646
}
4647
4648
UnityPanelWidget,
4649
.unity-panel {
4650
background-color: #cfcfcf;
4651
color: rgba(0, 0, 0, 0.87);
4652
}
4653
4654
UnityPanelWidget:backdrop,
4655
.unity-panel:backdrop {
4656
color: rgba(0, 0, 0, 0.54);
4657
}
4658
4659
.unity-panel.menuitem,
4660
.unity-panel .menuitem {
4661
color: rgba(0, 0, 0, 0.54);
4662
}
4663
4664
.unity-panel.menubar.menuitem:hover,
4665
.unity-panel.menubar .menuitem *:hover {
4666
box-shadow: inset 0 -2px #42A5F5;
4667
background-color: transparent;
4668
color: rgba(0, 0, 0, 0.87);
4669
}
4670
4671
.menu IdoPlaybackMenuItem.menuitem:active {
4672
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
4673
animation: spin 1s linear infinite;
4674
color: #42A5F5;
4675
}
4676
4677
/**************
4678
* Mate-Panel *
4679
**************/
4680
.mate-panel-menu-bar menubar,
4681
#PanelApplet-window-menu-applet-button {
4682
background-color: transparent;
4683
}
4684
4685
#PanelPlug,
4686
PanelToplevel.background {
4687
background-color: rgba(0, 0, 0, 0.6);
4688
color: #FFFFFF;
4689
font-weight: 500;
4690
}
4691
4692
PanelToplevel > widget > button {
4693
padding: 0 4px;
4694
border-radius: 0;
4695
}
4696
4697
PanelSeparator {
4698
color: rgba(0, 0, 0, 0.1);
4699
}
4700
4701
MatePanelAppletFrameDBus {
4702
border-style: solid;
4703
border-width: 0 1px;
4704
border-color: rgba(0, 0, 0, 0.1);
4705
}
4706
4707
.mate-panel-menu-bar menubar menuitem {
4708
padding: 4px;
4709
}
4710
4711
.mate-panel-menu-bar menubar menu menuitem {
4712
padding: 6px;
4713
}
4714
4715
.mate-panel-menu-bar #PanelApplet button {
4716
-GtkWidget-window-dragging: true;
4717
padding: 4px;
4718
border-radius: 0;
4719
}
4720
4721
PanelApplet.wnck-applet .wnck-pager {
4722
background-color: transparent;
4723
color: #40C4FF;
4724
}
4725
4726
PanelApplet.wnck-applet .wnck-pager:hover {
4727
background-color: alpha(currentColor, 0.15);
4728
}
4729
4730
PanelApplet.wnck-applet .wnck-pager:active {
4731
background-color: alpha(currentColor, 0.3);
4732
}
4733
4734
PanelApplet.wnck-applet .wnck-pager:selected {
4735
background-color: #42A5F5;
4736
}
4737
4738
#MatePanelPopupWindow {
4739
border: 1px solid rgba(0, 0, 0, 0.1);
4740
border-radius: 3px;
4741
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
4742
}
4743
4744
#MatePanelPopupWindow frame > border {
4745
border-style: none;
4746
}
4747
4748
#MatePanelPopupWindow ClockMap {
4749
border: 1px solid rgba(0, 0, 0, 0.1);
4750
}
4751
4752
na-tray-applet {
4753
-NaTrayApplet-icon-padding: 3px;
4754
-NaTrayApplet-icon-size: 16;
4755
}
4756
4757
.mate-panel-menu-bar {
4758
-PanelMenuBar-icon-visible: true;
4759
}
4760
4761
.mate-panel-applet-slider {
4762
background-color: transparent;
4763
}
4764
4765
.mate-panel-applet-slider frame {
4766
border: 1px solid rgba(0, 0, 0, 0.1);
4767
border-radius: 3px;
4768
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
4769
background-color: #F5F5F5;
4770
}
4771
4772
.mate-panel-applet-slider frame frame {
4773
all: unset;
4774
}
4775
4776
.mate-panel-applet-slider frame > border {
4777
border-style: none;
4778
}
4779
4780
/*********************
4781
* CAJA File manager *
4782
*********************/
4783
.caja-navigation-window button.toggle.image-button {
4784
border-radius: 2px;
4785
}
4786
4787
.caja-pathbar button {
4788
margin: 0 -1px 0 -2px;
4789
}
4790
4791
.caja-pathbar button > widget {
4792
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
4793
-GtkArrow-arrow-scaling: 1;
4794
}
4795
4796
.caja-side-pane notebook viewport.frame,
4797
.caja-side-pane notebook widget .vertical {
4798
background-color: #FFFFFF;
4799
}
4800
4801
.caja-side-pane notebook,
4802
.caja-notebook {
4803
border-top: 1px solid rgba(0, 0, 0, 0.1);
4804
}
4805
4806
.caja-side-pane notebook .frame,
4807
.caja-notebook .frame {
4808
border-style: none;
4809
}
4810
4811
.caja-navigation-window statusbar {
4812
margin: 0 -10px;
4813
padding: 0 4px;
4814
border-top: 1px solid rgba(0, 0, 0, 0.1);
4815
}
4816
4817
.caja-notebook frame > border {
4818
border-style: none;
4819
}
4820
4821
#caja-extra-view-widget {
4822
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4823
background-color: #F5F5F5;
4824
}
4825
4826
#caja-extra-view-widget > box > box > label {
4827
font-weight: bold;
4828
}
4829
4830
/*********
4831
* Pluma *
4832
*********/
4833
.pluma-window statusbar {
4834
margin: 0 -10px;
4835
padding: 0 4px;
4836
border-top: 1px solid rgba(0, 0, 0, 0.1);
4837
}
4838
4839
.pluma-window statusbar frame > border {
4840
border-style: none;
4841
}
4842
4843
.pluma-window statusbar frame button.flat {
4844
padding: 0 4px;
4845
border-radius: 0;
4846
}
4847
4848
.pluma-window statusbar frame button.flat widget {
4849
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
4850
-GtkArrow-arrow-scaling: 1;
4851
}
4852
4853
.pluma-print-preview toolbar {
4854
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4855
}
4856
4857
.pluma-window paned.horizontal box.vertical box.horizontal button.flat {
4858
margin: 1px;
4859
}
4860
4861
.pluma-window paned.horizontal box.vertical .frame {
4862
border-style: none;
4863
}
4864
4865
.pluma-window paned.horizontal box.vertical notebook.frame {
4866
margin-top: -1px;
4867
border-top: 1px solid rgba(0, 0, 0, 0.1);
4868
}
4869
4870
.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal {
4871
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4872
}
4873
4874
/*********
4875
* Atril *
4876
*********/
4877
.atril-window paned.horizontal box.vertical .frame {
4878
border-style: none;
4879
}
4880
4881
.atril-window paned.horizontal box.vertical notebook .frame {
4882
border-top: 1px solid rgba(0, 0, 0, 0.1);
4883
}
4884
4885
/* mate-screensaver lock dialog */
4886
.lock-dialog {
4887
border-radius: 2px;
4888
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.4);
4889
}
4890
4891
.lock-dialog frame > border {
4892
border-style: none;
4893
}
4894
4895
/******************
4896
* Budgie Desktop *
4897
******************/
4898
.budgie-container {
4899
background-color: transparent;
4900
}
4901
4902
.budgie-menu.background {
4903
padding: 0;
4904
background-color: #FFFFFF;
4905
}
4906
4907
.budgie-menu scrollbar,
4908
.budgie-menu entry.search {
4909
background-color: transparent;
4910
}
4911
4912
.budgie-menu entry.search {
4913
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
4914
border-radius: 0;
4915
box-shadow: none;
4916
font-size: 120%;
4917
}
4918
4919
.budgie-menu .categories:dir(ltr) {
4920
border-bottom-left-radius: 2px;
4921
}
4922
4923
.budgie-menu .categories:dir(rtl) {
4924
border-bottom-right-radius: 2px;
4925
}
4926
4927
.budgie-menu button {
4928
min-height: 32px;
4929
padding: 0 8px;
4930
border-radius: 0;
4931
color: rgba(0, 0, 0, 0.87);
4932
font-weight: normal;
4933
}
4934
4935
.budgie-menu button:disabled {
4936
color: rgba(0, 0, 0, 0.38);
4937
}
4938
4939
.budgie-menu row {
4940
all: unset;
4941
}
4942
4943
button.budgie-menu-launcher {
4944
padding: 0 2px;
4945
}
4946
4947
popover.background.user-menu {
4948
padding: 8px;
4949
}
4950
4951
popover.background.user-menu .content-box {
4952
background-color: transparent;
4953
}
4954
4955
popover.background.user-menu separator {
4956
margin: 4px 0;
4957
}
4958
4959
popover.background.user-menu row {
4960
padding: 0;
4961
box-shadow: none;
4962
background-image: none;
4963
}
4964
4965
button.raven-trigger {
4966
padding: 0 4px;
4967
}
4968
4969
popover.background.places-menu {
4970
padding: 8px;
4971
}
4972
4973
popover.background.places-menu .name-button.text-button {
4974
padding-left: 8px;
4975
padding-right: 8px;
4976
}
4977
4978
popover.background.places-menu .name-button.text-button image:dir(ltr) {
4979
margin-right: 3px;
4980
}
4981
4982
popover.background.places-menu .name-button.text-button image:dir(rtl) {
4983
margin-left: 3px;
4984
}
4985
4986
popover.background.places-menu .places-section-header > image:dir(ltr) {
4987
margin: 0 -2px 0 5px;
4988
}
4989
4990
popover.background.places-menu .places-section-header > image:dir(rtl) {
4991
margin: 0 5px 0 -2px;
4992
}
4993
4994
popover.background.places-menu .places-list {
4995
margin-top: 4px;
4996
padding-top: 4px;
4997
border-top: 1px solid rgba(0, 0, 0, 0.1);
4998
background-color: transparent;
4999
}
5000
5001
popover.background.places-menu row {
5002
padding: 0;
5003
box-shadow: none;
5004
background-image: none;
5005
}
5006
5007
.budgie-panel {
5008
background-color: rgba(0, 0, 0, 0.6);
5009
color: rgba(255, 255, 255, 0.7);
5010
font-weight: 500;
5011
}
5012
5013
.budgie-panel button {
5014
border-radius: 0;
5015
}
5016
5017
.budgie-panel separator {
5018
background-color: rgba(255, 255, 255, 0.3);
5019
}
5020
5021
.budgie-panel .alert {
5022
color: #FF5252;
5023
}
5024
5025
.budgie-panel #tasklist-button {
5026
padding: 0 4px;
5027
}
5028
5029
.budgie-panel #tasklist-button:checked {
5030
background-color: rgba(255, 255, 255, 0.12);
5031
}
5032
5033
.budgie-panel button.flat.launcher {
5034
padding: 0;
5035
}
5036
5037
.budgie-panel button.flat.launcher:checked {
5038
background-color: rgba(255, 255, 255, 0.12);
5039
}
5040
5041
.budgie-panel button.flat.launcher:not(:checked) {
5042
color: rgba(255, 255, 255, 0.5);
5043
}
5044
5045
.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active {
5046
color: rgba(255, 255, 255, 0.7);
5047
}
5048
5049
.budgie-panel button.flat.launcher:not(:checked):disabled {
5050
color: rgba(255, 255, 255, 0.3);
5051
}
5052
5053
.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher {
5054
border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
5055
}
5056
5057
.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher:checked, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, .top
5058
.budgie-panel .pinned button.flat.launcher.running,
5059
.budgie-panel .pinned .top button.flat.launcher.running {
5060
border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0;
5061
}
5062
5063
.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher {
5064
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
5065
}
5066
5067
.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher:checked, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, .bottom
5068
.budgie-panel .pinned button.flat.launcher.running,
5069
.budgie-panel .pinned .bottom button.flat.launcher.running {
5070
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0;
5071
}
5072
5073
.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher {
5074
border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
5075
}
5076
5077
.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher:checked, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, .left
5078
.budgie-panel .pinned button.flat.launcher.running,
5079
.budgie-panel .pinned .left button.flat.launcher.running {
5080
border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0;
5081
}
5082
5083
.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher {
5084
border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
5085
}
5086
5087
.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher:checked, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, .right
5088
.budgie-panel .pinned button.flat.launcher.running,
5089
.budgie-panel .pinned .right button.flat.launcher.running {
5090
border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px;
5091
}
5092
5093
frame.raven-frame > border {
5094
border-style: none;
5095
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22);
5096
}
5097
5098
.top frame.raven-frame > border {
5099
margin-bottom: 32px;
5100
}
5101
5102
.bottom frame.raven-frame > border {
5103
margin-top: 32px;
5104
}
5105
5106
.left frame.raven-frame > border {
5107
margin-right: 32px;
5108
}
5109
5110
.right frame.raven-frame > border {
5111
margin-left: 32px;
5112
}
5113
5114
.raven {
5115
background-color: #FAFAFA;
5116
}
5117
5118
.raven > stack {
5119
margin-bottom: -10px;
5120
}
5121
5122
.raven stackswitcher.linked > button {
5123
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FFA726 0%, transparent 0%) 0 0 0/0 0 0px;
5124
border-radius: 0;
5125
}
5126
5127
.raven stackswitcher.linked > button:checked {
5128
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FFA726 100%, transparent 0%) 0 0 2/0 0 2px;
5129
background-color: transparent;
5130
}
5131
5132
.raven .raven-header {
5133
min-height: 32px;
5134
padding: 3px;
5135
}
5136
5137
.raven .raven-header:not(.top) {
5138
margin-top: -6px;
5139
}
5140
5141
.raven .raven-header.top {
5142
padding: 2px 0;
5143
background-color: #42A5F5;
5144
color: #FFFFFF;
5145
}
5146
5147
.raven .raven-header.top stackswitcher button {
5148
margin: -6px 0;
5149
min-height: 32px;
5150
}
5151
5152
.raven .raven-header.top button.image-button:dir(ltr) {
5153
margin-right: 2px;
5154
}
5155
5156
.raven .raven-header.top button.image-button:dir(rtl) {
5157
margin-left: 2px;
5158
}
5159
5160
.raven .raven-header.top > image {
5161
margin: 0 8px;
5162
}
5163
5164
.raven .raven-header.top > label {
5165
margin: 0 -8px;
5166
font-weight: bold;
5167
}
5168
5169
.raven .raven-header.bottom {
5170
border-top: 1px solid rgba(0, 0, 0, 0.1);
5171
}
5172
5173
.raven viewport.frame .raven-header {
5174
margin-top: -8px;
5175
}
5176
5177
.raven .raven-background {
5178
border-style: solid none;
5179
border-width: 1px;
5180
border-color: rgba(0, 0, 0, 0.1);
5181
background-color: #FFFFFF;
5182
}
5183
5184
.raven .raven-background.frame {
5185
border-style: solid none;
5186
}
5187
5188
.raven .raven-background > overlay > widget > image {
5189
color: rgba(0, 0, 0, 0.12);
5190
}
5191
5192
.raven .raven-background grid > label:first-child {
5193
min-height: 32px;
5194
}
5195
5196
.raven scrolledwindow.raven-background {
5197
border-bottom-style: none;
5198
}
5199
5200
.raven .raven-header.top + .raven-background {
5201
border-style: none;
5202
background-color: #42A5F5;
5203
color: #FFFFFF;
5204
}
5205
5206
.raven .raven-header.top + .raven-background stackswitcher button {
5207
margin: -4px 0;
5208
}
5209
5210
.raven .powerstrip button {
5211
margin: 2px 0 1px;
5212
padding: 10px;
5213
}
5214
5215
.raven .option-subtitle {
5216
font-size: smaller;
5217
}
5218
5219
calendar.raven-calendar {
5220
border-style: none;
5221
background-color: transparent;
5222
}
5223
5224
calendar.raven-calendar:selected {
5225
border-radius: 2px;
5226
background-color: #42A5F5;
5227
}
5228
5229
.raven-mpris {
5230
background-color: rgba(0, 0, 0, 0.6);
5231
color: #FFFFFF;
5232
}
5233
5234
.raven-mpris label {
5235
min-height: 24px;
5236
}
5237
5238
.raven-mpris button.image-button {
5239
padding: 10px;
5240
}
5241
5242
.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window {
5243
background-color: transparent;
5244
}
5245
5246
.budgie-notification .notification-title, .budgie-switcher .notification-title {
5247
font-size: 120%;
5248
}
5249
5250
.budgie-osd .budgie-osd-text {
5251
font-size: 120%;
5252
}
5253
5254
.drop-shadow {
5255
margin: 5px 9px;
5256
padding: 3px;
5257
border-radius: 2px;
5258
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
5259
background-color: #FAFAFA;
5260
}
5261
5262
.drop-shadow .linked > button {
5263
border-radius: 2px;
5264
}
5265
5266
.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog {
5267
border-radius: 2px;
5268
background-color: #FAFAFA;
5269
}
5270
5271
.budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration {
5272
border-radius: 2px;
5273
}
5274
5275
.budgie-session-dialog label:not(:last-child),
5276
.budgie-session-dialog .dialog-title {
5277
font-size: 120%;
5278
}
5279
5280
.budgie-session-dialog .linked.horizontal > button {
5281
padding: 8px 16px;
5282
border-top: 1px solid rgba(0, 0, 0, 0.1);
5283
border-radius: 0;
5284
}
5285
5286
.budgie-session-dialog .linked.horizontal > button:first-child {
5287
border-bottom-left-radius: 2px;
5288
}
5289
5290
.budgie-session-dialog .linked.horizontal > button:last-child {
5291
border-bottom-right-radius: 2px;
5292
}
5293
5294
.budgie-polkit-dialog .message {
5295
color: rgba(0, 0, 0, 0.38);
5296
}
5297
5298
.budgie-polkit-dialog .failure {
5299
color: #FF5252;
5300
}
5301
5302
.budgie-run-dialog {
5303
background-color: #FFFFFF;
5304
}
5305
5306
.budgie-run-dialog entry.search {
5307
font-size: 120%;
5308
padding: 6px 14px;
5309
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
5310
background-color: transparent;
5311
}
5312
5313
.budgie-run-dialog list .dim-label, .budgie-run-dialog list label.separator, .budgie-run-dialog list .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) .budgie-run-dialog list .subtitle, .budgie-run-dialog list
5314
headerbar .subtitle,
5315
headerbar .budgie-run-dialog list .subtitle, .budgie-run-dialog list .budgie-notification .notification-body, .budgie-notification .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher .notification-body, .budgie-switcher .budgie-run-dialog list .notification-body {
5316
opacity: 1;
5317
}
5318
5319
.budgie-run-dialog scrolledwindow {
5320
border-top: 1px solid rgba(0, 0, 0, 0.1);
5321
}
5322
5323
/************************
5324
* LightDM GTK+ Greeter *
5325
************************/
5326
#panel_window {
5327
background-color: rgba(0, 0, 0, 0.3);
5328
color: #FFFFFF;
5329
}
5330
5331
#panel_window menubar,
5332
#panel_window separator {
5333
background-color: transparent;
5334
}
5335
5336
#panel_window separator {
5337
padding: 0 4px;
5338
}
5339
5340
#panel_window separator:first-child {
5341
padding: 0 8px;
5342
}
5343
5344
#panel_window menubar > menuitem {
5345
color: rgba(255, 255, 255, 0.7);
5346
}
5347
5348
#panel_window menubar > menuitem:hover {
5349
color: #FFFFFF;
5350
}
5351
5352
#panel_window menubar > menuitem:disabled label {
5353
color: rgba(255, 255, 255, 0.3);
5354
}
5355
5356
#login_window,
5357
#shutdown_dialog,
5358
#restart_dialog {
5359
margin: 8px;
5360
border-radius: 2px;
5361
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
5362
background-color: #FAFAFA;
5363
}
5364
5365
#content_frame {
5366
padding-bottom: 20px;
5367
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
5368
}
5369
5370
#buttonbox_frame {
5371
padding-top: 24px;
5372
}
5373
5374
#buttonbox_frame button {
5375
margin: -16px;
5376
}
5377
5378
#greeter_infobar {
5379
margin-top: -1px;
5380
}
5381
5382
/* GTK NAMED COLORS
5383
----------------
5384
use responsibly! */
5385
/*
5386
widget text/foreground color */
5387
@define-color theme_fg_color rgba(0, 0, 0, 0.87);
5388
/*
5389
text color for entries, views and content in general */
5390
@define-color theme_text_color rgba(0, 0, 0, 0.87);
5391
/*
5392
widget base background color */
5393
@define-color theme_bg_color #F5F5F5;
5394
/*
5395
text widgets and the like base background color */
5396
@define-color theme_base_color #FFFFFF;
5397
/*
5398
base background color of selections */
5399
@define-color theme_selected_bg_color #42A5F5;
5400
/*
5401
text/foreground color of selections */
5402
@define-color theme_selected_fg_color #FFFFFF;
5403
/*
5404
base background color of insensitive widgets */
5405
@define-color insensitive_bg_color #F5F5F5;
5406
/*
5407
text foreground color of insensitive widgets */
5408
@define-color insensitive_fg_color rgba(0, 0, 0, 0.38);
5409
/*
5410
insensitive text widgets and the like base background color */
5411
@define-color insensitive_base_color #FAFAFA;
5412
/*
5413
widget text/foreground color on backdrop windows */
5414
@define-color theme_unfocused_fg_color rgba(0, 0, 0, 0.87);
5415
/*
5416
text color for entries, views and content in general on backdrop windows */
5417
@define-color theme_unfocused_text_color rgba(0, 0, 0, 0.87);
5418
/*
5419
widget base background color on backdrop windows */
5420
@define-color theme_unfocused_bg_color #F5F5F5;
5421
/*
5422
text widgets and the like base background color on backdrop windows */
5423
@define-color theme_unfocused_base_color #FFFFFF;
5424
/*
5425
base background color of selections on backdrop windows */
5426
@define-color theme_unfocused_selected_bg_color #42A5F5;
5427
/*
5428
text/foreground color of selections on backdrop windows */
5429
@define-color theme_unfocused_selected_fg_color #FFFFFF;
5430
/*
5431
insensitive color on backdrop windows */
5432
@define-color unfocused_insensitive_color rgba(0, 0, 0, 0.38);
5433
/*
5434
widgets main borders color */
5435
@define-color borders rgba(0, 0, 0, 0.1);
5436
/*
5437
widgets main borders color on backdrop windows */
5438
@define-color unfocused_borders rgba(0, 0, 0, 0.1);
5439
/*
5440
these are pretty self explicative */
5441
@define-color warning_color #FF6D00;
5442
@define-color error_color #DD2C00;
5443
@define-color success_color #00C853;
5444
/*
5445
FIXME this is really an API */
5446
@define-color content_view_bg #FFFFFF;
5447
@define-color placeholder_text_color #757575;
5448