gtk-light.css
ASCII text, with very long lines (493)
1
@keyframes ripple_effect {
2
to {
3
background-size: 1000% 1000%; } }
4
@keyframes header_ripple_effect {
5
from {
6
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 0%, transparent 0%); }
7
to {
8
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 100%, transparent 0%); } }
9
* {
10
padding: 0;
11
background-clip: padding-box;
12
-GtkToolButton-icon-spacing: 4;
13
-GtkTextView-error-underline-color: #DD2C00;
14
-GtkScrolledWindow-scrollbar-spacing: 0;
15
-GtkToolItemGroup-expander-size: 11;
16
-GtkWidget-text-handle-width: 24;
17
-GtkWidget-text-handle-height: 24;
18
-GtkDialog-button-spacing: 4;
19
-GtkDialog-action-area-border: 0;
20
outline-style: solid;
21
outline-width: 2px;
22
outline-color: alpha(currentColor, 0.3);
23
outline-offset: -4px;
24
-gtk-outline-radius: 2px;
25
-gtk-secondary-caret-color: #42A5F5; }
26
27
/***************
28
* Base States *
29
***************/
30
.background {
31
background-color: #F5F5F5;
32
color: rgba(0, 0, 0, 0.8); }
33
34
/*
35
These wildcard seems unavoidable, need to investigate.
36
Wildcards are bad and troublesome, use them with care,
37
or better, just don't.
38
Everytime a wildcard is used a kitten dies, painfully.
39
*/
40
*:disabled {
41
-gtk-icon-effect: dim; }
42
43
.gtkstyle-fallback {
44
background-color: #F5F5F5;
45
color: rgba(0, 0, 0, 0.8); }
46
.gtkstyle-fallback:hover {
47
background-color: #e8e8e8;
48
color: rgba(0, 0, 0, 0.8); }
49
.gtkstyle-fallback:active {
50
background-color: gainsboro;
51
color: rgba(0, 0, 0, 0.8); }
52
.gtkstyle-fallback:disabled {
53
background-color: #F5F5F5;
54
color: rgba(0, 0, 0, 0.32); }
55
.gtkstyle-fallback:selected {
56
background-color: #42A5F5;
57
color: #FFFFFF; }
58
59
.view, iconview {
60
background-color: #FFFFFF;
61
color: rgba(0, 0, 0, 0.8); }
62
.view:hover, iconview:hover, .view:active, iconview:active, .view:selected, iconview:selected {
63
border-radius: 2px; }
64
.view:disabled, iconview:disabled {
65
color: rgba(0, 0, 0, 0.32); }
66
67
.view text, iconview text,
68
textview text {
69
background-color: #FFFFFF;
70
color: rgba(0, 0, 0, 0.8); }
71
.view text:disabled, iconview text:disabled,
72
textview text:disabled {
73
color: rgba(0, 0, 0, 0.32); }
74
75
textview border {
76
background-color: #FAFAFA;
77
color: rgba(0, 0, 0, 0.48); }
78
79
.rubberband,
80
rubberband,
81
flowbox rubberband,
82
treeview.view rubberband,
83
.content-view rubberband,
84
.content-view .rubberband {
85
border: 1px solid #40C4FF;
86
background-color: rgba(64, 196, 255, 0.3); }
87
88
flowbox flowboxchild {
89
outline-offset: -2px;
90
padding: 4px;
91
border-radius: 2px; }
92
93
label {
94
caret-color: currentColor; }
95
label.separator {
96
color: rgba(0, 0, 0, 0.8); }
97
label selection {
98
background-color: #42A5F5;
99
color: #FFFFFF; }
100
label:disabled {
101
color: rgba(0, 0, 0, 0.32); }
102
tab label:disabled, button label:disabled, menuitem label:disabled {
103
color: inherit; }
104
105
.dim-label, label.separator, .titlebar:not(headerbar) .subtitle,
106
headerbar .subtitle {
107
opacity: 0.6; }
108
109
assistant .sidebar {
110
padding: 4px 0; }
111
assistant .sidebar label {
112
min-height: 36px;
113
padding: 0 12px;
114
color: rgba(0, 0, 0, 0.48);
115
font-weight: 500; }
116
assistant .sidebar label.highlight {
117
color: rgba(0, 0, 0, 0.8); }
118
119
popover.background.touch-selection, popover.background.magnifier, popover.background.osd, .app-notification, .osd .scale-popup, .nautilus-window .floating-bar, .osd {
120
opacity: 0.9; }
121
122
/*********************
123
* Spinner Animation *
124
*********************/
125
@keyframes spin {
126
to {
127
-gtk-icon-transform: rotate(1turn); } }
128
@keyframes spin_colors {
129
1% {
130
color: #66BB6A; }
131
25% {
132
color: #66BB6A; }
133
26% {
134
color: #42A5F5; }
135
50% {
136
color: #42A5F5; }
137
51% {
138
color: #FFA726; }
139
75% {
140
color: #FFA726; }
141
76% {
142
color: #EF5350; }
143
100% {
144
color: #EF5350; } }
145
spinner {
146
background: none;
147
opacity: 0;
148
-gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
149
spinner:checked {
150
opacity: 1;
151
animation: spin 1s linear infinite, spin_colors 4s linear infinite; }
152
spinner:checked:disabled {
153
opacity: 0.4; }
154
155
/****************
156
* Text Entries *
157
****************/
158
spinbutton:not(.vertical),
159
entry {
160
min-height: 36px;
161
padding: 0 8px;
162
border-radius: 2px;
163
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
164
border-image: none;
165
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
166
background-color: #FFFFFF;
167
color: rgba(0, 0, 0, 0.8); }
168
spinbutton:focus:not(.vertical),
169
entry:focus {
170
border-image: none;
171
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
172
spinbutton:disabled:not(.vertical),
173
entry:disabled {
174
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
175
background-color: #FAFAFA;
176
color: rgba(0, 0, 0, 0.32); }
177
spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) entry:not(.search),
178
notebook > stack:not(:only-child) spinbutton:not(.vertical), colorchooser .popover.osd spinbutton:not(.vertical), layoutpane entry.search, editortweak entry.search, #login_window entry,
179
entry.flat {
180
border-radius: 0;
181
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
182
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
183
box-shadow: inset 0 -1px alpha(currentColor, 0.3);
184
background-color: transparent;
185
color: rgba(0, 0, 0, 0.8); }
186
spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry:focus:not(.search),
187
notebook > stack:not(:only-child) spinbutton:focus:not(.vertical), colorchooser .popover.osd spinbutton:focus:not(.vertical), layoutpane entry.search:focus, editortweak entry.search:focus, #login_window entry:focus,
188
entry.flat:focus {
189
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px;
190
box-shadow: inset 0 -1px alpha(currentColor, 0.3); }
191
spinbutton.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry:disabled:not(.search),
192
notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), colorchooser .popover.osd spinbutton:disabled:not(.vertical), layoutpane entry.search:disabled, editortweak entry.search:disabled, #login_window entry:disabled,
193
entry.flat:disabled {
194
box-shadow: inset 0 -1px alpha(currentColor, 0.3);
195
background-color: transparent;
196
color: rgba(0, 0, 0, 0.32); }
197
spinbutton:not(.vertical) image,
198
entry image {
199
color: alpha(currentColor, 0.75); }
200
spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active,
201
entry image:hover,
202
entry image:active {
203
color: currentColor; }
204
spinbutton:not(.vertical) image:disabled,
205
entry image:disabled {
206
color: alpha(currentColor, 0.6); }
207
spinbutton:not(.vertical) image.left,
208
entry image.left {
209
margin-left: 2px;
210
margin-right: 6px; }
211
spinbutton:not(.vertical) image.right,
212
entry image.right {
213
margin-left: 6px;
214
margin-right: 2px; }
215
spinbutton:not(.vertical) undershoot.left,
216
entry undershoot.left {
217
background-color: transparent;
218
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
219
padding-left: 1px;
220
background-size: 1px 12px;
221
background-repeat: repeat-y;
222
background-origin: content-box;
223
background-position: left top; }
224
spinbutton:not(.vertical) undershoot.right,
225
entry undershoot.right {
226
background-color: transparent;
227
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
228
padding-right: 1px;
229
background-size: 1px 12px;
230
background-repeat: repeat-y;
231
background-origin: content-box;
232
background-position: right top; }
233
spinbutton.error:not(.vertical),
234
entry.error {
235
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
236
border-image: none;
237
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
238
background-color: #DD2C00;
239
color: #FFFFFF; }
240
spinbutton.error:focus:not(.vertical),
241
entry.error:focus {
242
border-image: none;
243
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
244
spinbutton.error:disabled:not(.vertical),
245
entry.error:disabled {
246
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
247
background-color: #FAFAFA;
248
color: rgba(0, 0, 0, 0.32); }
249
spinbutton.error.flat:not(.vertical), notebook > stack:not(:only-child) entry.error:not(.search),
250
notebook > stack:not(:only-child) spinbutton.error:not(.vertical), colorchooser .popover.osd spinbutton.error:not(.vertical), layoutpane entry.error.search, editortweak entry.error.search, #login_window entry.error,
251
entry.error.flat {
252
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
253
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 0%, transparent 0%) 0 0 0/0 0 0px;
254
box-shadow: inset 0 -1px #DD2C00;
255
background-color: transparent;
256
color: rgba(0, 0, 0, 0.8); }
257
spinbutton.error.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.error:focus:not(.search),
258
notebook > stack:not(:only-child) spinbutton.error:focus:not(.vertical), colorchooser .popover.osd spinbutton.error:focus:not(.vertical), layoutpane entry.error.search:focus, editortweak entry.error.search:focus, #login_window entry.error:focus,
259
entry.error.flat:focus {
260
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #DD2C00 100%, transparent 0%) 0 0 2/0 0 2px;
261
box-shadow: inset 0 -1px #DD2C00; }
262
spinbutton.error.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.error:disabled:not(.search),
263
notebook > stack:not(:only-child) spinbutton.error:disabled:not(.vertical), colorchooser .popover.osd spinbutton.error:disabled:not(.vertical), layoutpane entry.error.search:disabled, editortweak entry.error.search:disabled, #login_window entry.error:disabled,
264
entry.error.flat:disabled {
265
box-shadow: inset 0 -1px alpha(currentColor, 0.3);
266
background-color: transparent;
267
color: rgba(0, 0, 0, 0.32); }
268
spinbutton.warning:not(.vertical),
269
entry.warning {
270
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
271
border-image: none;
272
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
273
background-color: #FF6D00;
274
color: #FFFFFF; }
275
spinbutton.warning:focus:not(.vertical),
276
entry.warning:focus {
277
border-image: none;
278
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
279
spinbutton.warning:disabled:not(.vertical),
280
entry.warning:disabled {
281
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
282
background-color: #FAFAFA;
283
color: rgba(0, 0, 0, 0.32); }
284
spinbutton.warning.flat:not(.vertical), notebook > stack:not(:only-child) entry.warning:not(.search),
285
notebook > stack:not(:only-child) spinbutton.warning:not(.vertical), colorchooser .popover.osd spinbutton.warning:not(.vertical), layoutpane entry.warning.search, editortweak entry.warning.search, #login_window entry.warning,
286
entry.warning.flat {
287
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
288
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 0%, transparent 0%) 0 0 0/0 0 0px;
289
box-shadow: inset 0 -1px #FF6D00;
290
background-color: transparent;
291
color: rgba(0, 0, 0, 0.8); }
292
spinbutton.warning.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.warning:focus:not(.search),
293
notebook > stack:not(:only-child) spinbutton.warning:focus:not(.vertical), colorchooser .popover.osd spinbutton.warning:focus:not(.vertical), layoutpane entry.warning.search:focus, editortweak entry.warning.search:focus, #login_window entry.warning:focus,
294
entry.warning.flat:focus {
295
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #FF6D00 100%, transparent 0%) 0 0 2/0 0 2px;
296
box-shadow: inset 0 -1px #FF6D00; }
297
spinbutton.warning.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.warning:disabled:not(.search),
298
notebook > stack:not(:only-child) spinbutton.warning:disabled:not(.vertical), colorchooser .popover.osd spinbutton.warning:disabled:not(.vertical), layoutpane entry.warning.search:disabled, editortweak entry.warning.search:disabled, #login_window entry.warning:disabled,
299
entry.warning.flat:disabled {
300
box-shadow: inset 0 -1px alpha(currentColor, 0.3);
301
background-color: transparent;
302
color: rgba(0, 0, 0, 0.32); }
303
spinbutton:not(.vertical) progress,
304
entry progress {
305
margin: 2px -6px;
306
border-style: none none solid;
307
border-width: 2px;
308
border-color: #42A5F5;
309
background-color: transparent; }
310
.linked:not(.vertical) > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked:not(.vertical) > entry:not(.search),
311
notebook > stack:not(:only-child) .linked:not(.vertical) > spinbutton:not(.vertical), colorchooser .popover.osd .linked:not(.vertical) > spinbutton:not(.vertical), layoutpane .linked:not(.vertical) > entry.search, editortweak .linked:not(.vertical) > entry.search, #login_window .linked:not(.vertical) > entry, .linked.vertical > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked.vertical > entry:not(.search),
312
notebook > stack:not(:only-child) .linked.vertical > spinbutton:not(.vertical), colorchooser .popover.osd .linked.vertical > spinbutton:not(.vertical), layoutpane .linked.vertical > entry.search, editortweak .linked.vertical > entry.search, #login_window .linked.vertical > entry, .linked:not(.vertical) >
313
entry.flat, .linked.vertical >
314
entry.flat {
315
border-radius: 0; }
316
317
treeview entry.flat, treeview entry {
318
min-height: 0;
319
padding: 2px;
320
border-radius: 0;
321
background-color: #FFFFFF; }
322
treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus {
323
border-image: none;
324
box-shadow: none; }
325
326
/***********
327
* Buttons *
328
***********/
329
@keyframes needs_attention {
330
from {
331
background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)); }
332
to {
333
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#FF4081), to(transparent)); } }
334
button {
335
min-height: 24px;
336
min-width: 16px;
337
padding: 6px 10px;
338
border-radius: 2px;
339
font-weight: 500;
340
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);
341
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;
342
background-color: #FAFAFA;
343
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
344
background-repeat: no-repeat;
345
background-position: center;
346
background-size: 1000% 1000%;
347
color: rgba(0, 0, 0, 0.6); }
348
button:hover {
349
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;
350
color: rgba(0, 0, 0, 0.8); }
351
button:active {
352
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
353
animation: ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
354
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);
355
background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%);
356
background-size: 0% 0%;
357
color: rgba(0, 0, 0, 0.8); }
358
button:disabled {
359
box-shadow: none;
360
background-color: alpha(currentColor, 0.3);
361
color: rgba(0, 0, 0, 0.24); }
362
button:checked {
363
background-color: #42A5F5;
364
color: #FFFFFF; }
365
button:checked:disabled {
366
background-color: alpha(currentColor, 0.3);
367
color: rgba(66, 165, 245, 0.4); }
368
modelbutton.flat,
369
.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, popover.background.menu button,
370
popover.background button.model, notebook > header > tabs > arrow, scrollbar button, check,
371
radio, calendar.button, messagedialog.csd .dialog-action-area button, button.sidebar-button, .gedit-search-slider button, PanelToplevel > widget > button, .lightdm-gtk-greeter button, :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar)
372
.path-bar button, layouttabbar button, .mate-panel-menu-bar #PanelApplet button:not(.flat), toolbar button, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
373
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,
374
button.flat {
375
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);
376
box-shadow: inset 0 0 0 9999px transparent;
377
background-color: transparent;
378
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
379
background-repeat: no-repeat;
380
background-position: center;
381
background-size: 1000% 1000%;
382
color: alpha(currentColor, 0.75); }
383
modelbutton.flat:hover,
384
.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, spinbutton.vertical button:hover, popover.background.menu button:hover,
385
popover.background button.model:hover, notebook > header > tabs > arrow:hover, scrollbar button:hover, check:hover,
386
radio:hover, calendar.button:hover, messagedialog.csd .dialog-action-area button:hover, button.sidebar-button:hover, .gedit-search-slider button:hover, PanelToplevel > widget > button:hover, .lightdm-gtk-greeter button:hover, :not(headerbar) .caja-pathbar button:hover, .caja-pathbar :not(headerbar) button:hover, :not(headerbar)
387
.path-bar button:hover, layouttabbar button:hover, .mate-panel-menu-bar #PanelApplet button:hover:not(.flat), toolbar button:hover, .titlebar:not(headerbar) button:hover:not(.suggested-action):not(.destructive-action),
388
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,
389
button.flat:hover {
390
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15);
391
color: currentColor; }
392
modelbutton.flat:active,
393
.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, popover.background.menu button:active,
394
popover.background button.model:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active,
395
radio:active, calendar.button:active, messagedialog.csd .dialog-action-area button:active, button.sidebar-button:active, .gedit-search-slider button:active, PanelToplevel > widget > button:active, .lightdm-gtk-greeter button:active, :not(headerbar) .caja-pathbar button:active, .caja-pathbar :not(headerbar) button:active, :not(headerbar)
396
.path-bar button:active, layouttabbar button:active, .mate-panel-menu-bar #PanelApplet button:active:not(.flat), toolbar button:active, .titlebar:not(headerbar) button:active:not(.suggested-action):not(.destructive-action),
397
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,
398
button.flat:active {
399
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
400
animation: ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
401
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15);
402
background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%);
403
background-size: 0% 0%;
404
color: currentColor; }
405
modelbutton.flat:disabled,
406
.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, popover.background.menu button:disabled,
407
popover.background button.model:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled,
408
radio:disabled, calendar.button:disabled, messagedialog.csd .dialog-action-area button:disabled, button.sidebar-button:disabled, .gedit-search-slider button:disabled, PanelToplevel > widget > button:disabled, .lightdm-gtk-greeter button:disabled, :not(headerbar) .caja-pathbar button:disabled, .caja-pathbar :not(headerbar) button:disabled, :not(headerbar)
409
.path-bar button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar #PanelApplet button:disabled:not(.flat), toolbar button:disabled, .titlebar:not(headerbar) button:disabled:not(.suggested-action):not(.destructive-action),
410
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,
411
button.flat:disabled {
412
box-shadow: none;
413
background-color: transparent;
414
color: alpha(currentColor, 0.3); }
415
:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar)
416
.path-bar button:checked, layouttabbar button:checked, .mate-panel-menu-bar #PanelApplet button:checked:not(.flat), toolbar button:checked, .titlebar:not(headerbar) button:checked:not(.suggested-action):not(.destructive-action),
417
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,
418
button.flat:checked {
419
background-color: alpha(currentColor, 0.3);
420
color: currentColor; }
421
:not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar)
422
.path-bar button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar #PanelApplet button:checked:disabled:not(.flat), toolbar button:checked:disabled, .titlebar:not(headerbar) button:checked:disabled:not(.suggested-action):not(.destructive-action),
423
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,
424
button.flat:checked:disabled {
425
background-color: alpha(currentColor, 0.3);
426
color: alpha(currentColor, 0.4); }
427
button.text-button {
428
padding-left: 16px;
429
padding-right: 16px; }
430
button.image-button {
431
min-width: 24px;
432
padding: 6px;
433
border-radius: 9999px;
434
-gtk-outline-radius: 9999px; }
435
button.text-button.image-button {
436
border-radius: 2px;
437
-gtk-outline-radius: 2px; }
438
button.text-button.image-button label:first-child {
439
margin-left: 10px;
440
margin-right: 2px; }
441
button.text-button.image-button label:last-child {
442
margin-left: 2px;
443
margin-right: 10px; }
444
button.text-button.image-button label:only-child {
445
margin-left: 10px;
446
margin-right: 10px; }
447
button.text-button.image-button image:not(:only-child):first-child {
448
margin-left: 4px; }
449
button.text-button.image-button image:not(:only-child):last-child {
450
margin-right: 4px; }
451
toolbar .linked > button, .titlebar:not(headerbar) .linked > button:not(.suggested-action):not(.destructive-action),
452
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 .linked.vertical > button, .titlebar:not(headerbar) .linked.vertical > button:not(.suggested-action):not(.destructive-action),
453
headerbar .linked.vertical > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked.vertical > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked.vertical > button, .linked >
454
button.flat, .linked.vertical >
455
button.flat {
456
border-radius: 2px; }
457
toolbar .linked > button.image-button, .titlebar:not(headerbar) .linked > button.image-button:not(.suggested-action):not(.destructive-action),
458
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 .linked.vertical > button.image-button, .titlebar:not(headerbar) .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action),
459
headerbar .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked.vertical > button.image-button, .linked >
460
button.flat.image-button, .linked.vertical >
461
button.flat.image-button {
462
border-radius: 9999px;
463
-gtk-outline-radius: 9999px; }
464
toolbar .linked > button.text-button.image-button, .titlebar:not(headerbar) .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action),
465
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 .linked.vertical > button.text-button.image-button, .titlebar:not(headerbar) .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action),
466
headerbar .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked.vertical > button.text-button.image-button, .linked >
467
button.flat.text-button.image-button, .linked.vertical >
468
button.flat.text-button.image-button {
469
border-radius: 2px;
470
-gtk-outline-radius: 2px; }
471
infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected
472
button:disabled {
473
color: rgba(255, 255, 255, 0.3); }
474
button.osd {
475
padding: 12px 16px; }
476
button.osd.image-button {
477
padding: 12px; }
478
button.osd:disabled {
479
opacity: 0; }
480
button.suggested-action {
481
background-color: #FF4081;
482
color: #FFFFFF; }
483
button.suggested-action:disabled {
484
box-shadow: none;
485
background-color: alpha(currentColor, 0.3);
486
color: rgba(0, 0, 0, 0.32); }
487
button.suggested-action:checked {
488
background-color: #ff79a7; }
489
button.suggested-action.flat {
490
background-color: transparent;
491
color: #FF4081; }
492
button.suggested-action.flat:disabled {
493
box-shadow: none;
494
background-color: transparent;
495
color: alpha(currentColor, 0.4); }
496
button.suggested-action.flat:checked {
497
background-color: alpha(currentColor, 0.3); }
498
button.destructive-action {
499
background-color: #FF5252;
500
color: #FFFFFF; }
501
button.destructive-action:disabled {
502
box-shadow: none;
503
background-color: alpha(currentColor, 0.3);
504
color: rgba(0, 0, 0, 0.32); }
505
button.destructive-action:checked {
506
background-color: #ff8686; }
507
button.destructive-action.flat {
508
background-color: transparent;
509
color: #FF5252; }
510
button.destructive-action.flat:disabled {
511
box-shadow: none;
512
background-color: transparent;
513
color: alpha(currentColor, 0.4); }
514
button.destructive-action.flat:checked {
515
background-color: alpha(currentColor, 0.3); }
516
.stack-switcher >
517
button {
518
outline-offset: -4px; }
519
.stack-switcher >
520
button > label {
521
padding-left: 6px;
522
padding-right: 6px; }
523
.stack-switcher >
524
button > image {
525
padding-left: 6px;
526
padding-right: 6px;
527
padding-top: 3px;
528
padding-bottom: 3px; }
529
.stack-switcher >
530
button.text-button {
531
padding-left: 10px;
532
padding-right: 10px; }
533
.stack-switcher >
534
button.image-button {
535
padding-left: 4px;
536
padding-right: 4px; }
537
.stack-switcher >
538
button.needs-attention:checked > label,
539
.stack-switcher >
540
button.needs-attention:checked > image {
541
animation: none;
542
background-image: none; }
543
button separator {
544
min-width: 0;
545
min-height: 0;
546
background: transparent; }
547
.primary-toolbar
548
button {
549
-gtk-icon-shadow: none; }
550
.inline-toolbar
551
button:not(.text-button), check,
552
radio, button.titlebutton, .nautilus-window headerbar > revealer > button,
553
button.close,
554
button.circular {
555
border-radius: 9999px;
556
-gtk-outline-radius: 9999px; }
557
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 {
558
min-height: 24px;
559
min-width: 24px;
560
padding: 0;
561
border-radius: 9999px;
562
-gtk-outline-radius: 9999px; }
563
564
.stack-switcher >
565
button.needs-attention > label,
566
.stack-switcher >
567
button.needs-attention > image, stacksidebar row.needs-attention > label {
568
animation: needs_attention 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
569
background-repeat: no-repeat;
570
background-position: right 3px;
571
background-size: 6px 6px; }
572
.stack-switcher >
573
button.needs-attention > label:dir(rtl),
574
.stack-switcher >
575
button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) {
576
background-position: left 3px; }
577
578
.linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) >
579
entry, .linked >
580
button, .linked > combobox > box > button.combo:dir(ltr), .linked > combobox > box > button.combo:dir(rtl) {
581
border-radius: 0;
582
-gtk-outline-radius: 2px; }
583
584
.linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) >
585
entry:first-child, .linked >
586
button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo {
587
border-top-left-radius: 2px;
588
border-bottom-left-radius: 2px; }
589
.linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) >
590
entry:last-child, .linked >
591
button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo {
592
border-top-right-radius: 2px;
593
border-bottom-right-radius: 2px; }
594
.linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) >
595
entry:only-child, .linked >
596
button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo {
597
border-radius: 2px; }
598
599
.linked.vertical > spinbutton:not(.vertical), .linked.vertical >
600
entry, .linked.vertical >
601
button, .linked.vertical > combobox > box > button.combo {
602
border-radius: 0;
603
-gtk-outline-radius: 2px; }
604
605
.linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical >
606
entry:first-child, .linked.vertical >
607
button:first-child, .linked.vertical > combobox:first-child > box > button.combo {
608
border-top-left-radius: 2px;
609
border-top-right-radius: 2px; }
610
.linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical >
611
entry:last-child, .linked.vertical >
612
button:last-child, .linked.vertical > combobox:last-child > box > button.combo {
613
border-bottom-left-radius: 2px;
614
border-bottom-right-radius: 2px; }
615
.linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical >
616
entry:only-child, .linked.vertical >
617
button:only-child, .linked.vertical > combobox:only-child > box > button.combo {
618
border-radius: 2px; }
619
620
/* menu buttons */
621
modelbutton.flat,
622
.menuitem.button.flat {
623
min-height: 28px;
624
padding: 0 8px;
625
border-radius: 2px;
626
color: inherit; }
627
modelbutton.flat check,
628
modelbutton.flat radio,
629
.menuitem.button.flat check,
630
.menuitem.button.flat radio {
631
box-shadow: none;
632
background-image: none; }
633
modelbutton.flat check:not(:checked):not(:indeterminate),
634
modelbutton.flat radio:not(:checked):not(:indeterminate),
635
.menuitem.button.flat check:not(:checked):not(:indeterminate),
636
.menuitem.button.flat radio:not(:checked):not(:indeterminate) {
637
color: alpha(currentColor, 0.6); }
638
modelbutton.flat check:last-child,
639
modelbutton.flat radio:last-child,
640
.menuitem.button.flat check:last-child,
641
.menuitem.button.flat radio:last-child {
642
margin-left: -8px;
643
margin-right: -16px; }
644
modelbutton.flat check:first-child,
645
modelbutton.flat radio:first-child,
646
.menuitem.button.flat check:first-child,
647
.menuitem.button.flat radio:first-child {
648
margin-left: -16px;
649
margin-right: -8px; }
650
651
modelbutton.flat arrow {
652
background: none; }
653
modelbutton.flat arrow:hover {
654
background: none; }
655
modelbutton.flat arrow.left {
656
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
657
modelbutton.flat arrow.right {
658
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
659
660
button.color {
661
min-height: 24px;
662
min-width: 24px;
663
padding: 6px; }
664
665
/*********
666
* Links *
667
*********/
668
*:link, button:link,
669
button:visited, *:link:hover, button:hover:link,
670
button:hover:visited, *:link:active, button:active:link,
671
button:active:visited {
672
color: #42A5F5; }
673
*:link:visited,
674
button:visited, *:link:visited:hover,
675
button:visited:hover, *:link:visited:active,
676
button:visited:active {
677
color: #E040FB; }
678
infobar.info *:link, infobar.info button:link,
679
infobar.info button:visited, infobar.question *:link, infobar.question button:link,
680
infobar.question button:visited, infobar.warning *:link, infobar.warning button:link,
681
infobar.warning button:visited, infobar.error *:link, infobar.error button:link,
682
infobar.error button:visited, *:link:selected, button:selected:link,
683
button:selected:visited, .selection-mode.titlebar:not(headerbar) .subtitle:link,
684
headerbar.selection-mode .subtitle:link, *:selected *:link, *:selected button:link,
685
*:selected button:visited {
686
color: #FFFFFF; }
687
688
button:link > label,
689
button:visited > label {
690
text-decoration-line: underline; }
691
692
/*****************
693
* GtkSpinButton *
694
*****************/
695
spinbutton:not(.vertical) {
696
padding: 0; }
697
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,
698
spinbutton:not(.vertical) entry {
699
min-width: 32px;
700
margin: 0;
701
border-image: none;
702
border-radius: 0;
703
box-shadow: none;
704
background-color: transparent; }
705
spinbutton:not(.vertical) button {
706
border: solid 6px transparent; }
707
spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) {
708
margin-left: -3px; }
709
spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) {
710
margin-right: -3px; }
711
spinbutton.vertical:disabled {
712
color: rgba(0, 0, 0, 0.32); }
713
spinbutton.vertical:drop(active) {
714
box-shadow: none; }
715
spinbutton.vertical entry {
716
min-height: 36px;
717
min-width: 48px;
718
padding: 0; }
719
spinbutton.vertical button {
720
min-height: 36px;
721
min-width: 48px;
722
padding: 0; }
723
spinbutton.vertical button.up {
724
border-radius: 2px 2px 0 0; }
725
spinbutton.vertical button.down {
726
border-radius: 0 0 2px 2px; }
727
treeview spinbutton:not(.vertical) {
728
min-height: 0;
729
border-style: none;
730
border-radius: 0; }
731
treeview spinbutton:not(.vertical) entry {
732
min-height: 0;
733
padding: 1px 2px; }
734
735
/**************
736
* ComboBoxes *
737
**************/
738
combobox arrow {
739
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
740
min-height: 16px;
741
min-width: 16px; }
742
combobox button.combo:checked {
743
transition: none; }
744
combobox button.combo cellview:dir(ltr) {
745
margin-left: -2px; }
746
combobox button.combo cellview:dir(rtl) {
747
margin-right: -2px; }
748
combobox #gtk-combobox-popup-menu {
749
padding: 2px 0; }
750
combobox #gtk-combobox-popup-menu menuitem {
751
min-height: 32px;
752
padding: 0 8px; }
753
combobox:drop(active) {
754
box-shadow: none; }
755
756
notebook > stack:not(:only-child) button.combo, #login_window #user_combobox button {
757
border-radius: 0;
758
background-image: none;
759
font-weight: inherit;
760
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
761
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
762
box-shadow: inset 0 -1px alpha(currentColor, 0.3);
763
background-color: transparent;
764
color: rgba(0, 0, 0, 0.8); }
765
notebook > stack:not(:only-child) button.combo:hover, #login_window #user_combobox button:hover {
766
box-shadow: inset 0 -2px alpha(currentColor, 0.3); }
767
notebook > stack:not(:only-child) button.combo:checked, #login_window #user_combobox button:checked {
768
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px; }
769
notebook > stack:not(:only-child) button.combo:disabled, #login_window #user_combobox button:disabled {
770
color: rgba(0, 0, 0, 0.32); }
771
772
/************
773
* Toolbars *
774
************/
775
toolbar {
776
-GtkWidget-window-dragging: true;
777
padding: 3px;
778
background-color: #F5F5F5; }
779
.osd toolbar {
780
background-color: transparent; }
781
toolbar.osd, .app-notification, frame.documents-dropdown {
782
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
783
padding: 6px;
784
border-radius: 2px;
785
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);
786
background-color: #FFFFFF; }
787
toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop {
788
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); }
789
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 {
790
border-radius: 0; }
791
toolbar.horizontal separator {
792
margin: 3px; }
793
toolbar.vertical separator {
794
margin: 3px; }
795
toolbar:not(.inline-toolbar):not(.osd) scale,
796
toolbar:not(.inline-toolbar):not(.osd) entry,
797
toolbar:not(.inline-toolbar):not(.osd) spinbutton,
798
toolbar:not(.inline-toolbar):not(.osd) button {
799
margin: 3px; }
800
toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child),
801
toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child),
802
toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) {
803
margin-left: 0; }
804
toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child),
805
toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child),
806
toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) {
807
margin-right: 0; }
808
toolbar:not(.inline-toolbar):not(.osd) switch {
809
margin: 9px 3px; }
810
811
.inline-toolbar {
812
padding: 6px;
813
border-style: solid;
814
border-width: 0 1px 1px;
815
border-color: rgba(0, 0, 0, 0.1);
816
background-color: #FAFAFA; }
817
818
searchbar,
819
.location-bar {
820
padding: 6px;
821
border-style: solid;
822
border-width: 0 0 1px;
823
border-color: rgba(0, 0, 0, 0.1);
824
background-color: #F5F5F5;
825
background-clip: border-box; }
826
827
/***************
828
* Header bars *
829
***************/
830
.titlebar:not(headerbar),
831
headerbar {
832
transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
833
min-height: 48px;
834
padding: 0 6px;
835
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);
836
background-color: #E0E0E0;
837
color: rgba(0, 0, 0, 0.8); }
838
.titlebar:disabled:not(headerbar) :not(button) > label,
839
headerbar:disabled :not(button) > label {
840
color: rgba(0, 0, 0, 0.32); }
841
.titlebar:backdrop:not(headerbar),
842
headerbar:backdrop {
843
color: rgba(0, 0, 0, 0.6); }
844
.titlebar:backdrop:disabled:not(headerbar) :not(button) > label,
845
headerbar:backdrop:disabled :not(button) > label {
846
color: rgba(0, 0, 0, 0.24); }
847
.titlebar:not(headerbar) .title,
848
headerbar .title {
849
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
850
padding: 0 12px;
851
font-weight: bold; }
852
.titlebar:not(headerbar) .subtitle,
853
headerbar .subtitle {
854
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
855
padding: 0 12px;
856
font-size: smaller; }
857
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
858
headerbar button:not(.suggested-action):not(.destructive-action) {
859
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px; }
860
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked,
861
headerbar button:not(.suggested-action):not(.destructive-action):checked {
862
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px; }
863
.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
864
headerbar button:not(.suggested-action):not(.destructive-action):checked,
865
headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled {
866
background-color: transparent; }
867
.titlebar:not(headerbar) button.suggested-action:disabled, .titlebar:not(headerbar) button.destructive-action:disabled,
868
headerbar button.suggested-action:disabled,
869
headerbar button.destructive-action:disabled {
870
color: alpha(currentColor, 0.4); }
871
.selection-mode.titlebar:not(headerbar),
872
headerbar.selection-mode {
873
transition: background-color 0.00001s 0.3s;
874
animation: header_ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1);
875
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);
876
background-color: #42A5F5;
877
color: #FFFFFF; }
878
.selection-mode.titlebar:backdrop:not(headerbar),
879
headerbar.selection-mode:backdrop {
880
color: rgba(255, 255, 255, 0.75); }
881
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
882
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) {
883
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px;
884
color: currentColor; }
885
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled,
886
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled {
887
color: alpha(currentColor, 0.4); }
888
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked,
889
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked {
890
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px;
891
color: currentColor; }
892
.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
893
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled {
894
color: alpha(currentColor, 0.4); }
895
.selection-mode.titlebar:not(headerbar) .selection-menu,
896
headerbar.selection-mode .selection-menu {
897
padding-left: 16px;
898
padding-right: 16px; }
899
.selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow,
900
headerbar.selection-mode .selection-menu GtkArrow {
901
-GtkArrow-arrow-scaling: 1; }
902
.selection-mode.titlebar:not(headerbar) .selection-menu .arrow,
903
headerbar.selection-mode .selection-menu .arrow {
904
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
905
.fullscreen .titlebar:not(headerbar), .tiled .titlebar:not(headerbar), .maximized .titlebar:not(headerbar), .fullscreen
906
headerbar, .tiled
907
headerbar, .maximized
908
headerbar {
909
border-radius: 0;
910
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
911
.default-decoration.titlebar:not(headerbar),
912
headerbar.default-decoration {
913
min-height: 24px;
914
padding: 6px;
915
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); }
916
.fullscreen .default-decoration.titlebar:not(headerbar), .tiled .default-decoration.titlebar:not(headerbar), .maximized .default-decoration.titlebar:not(headerbar), .fullscreen
917
headerbar.default-decoration, .tiled
918
headerbar.default-decoration, .maximized
919
headerbar.default-decoration {
920
box-shadow: none; }
921
.default-decoration.titlebar:not(headerbar) button.titlebutton,
922
headerbar.default-decoration button.titlebutton {
923
min-height: 24px;
924
min-width: 24px;
925
margin: 0;
926
padding: 0; }
927
.background:not(.csd) .default-decoration.titlebar:not(headerbar) button.titlebutton:active, .background:not(.csd)
928
headerbar.default-decoration button.titlebutton:active {
929
background-size: 1000% 1000%; }
930
.solid-csd .titlebar:dir(rtl):not(headerbar), .solid-csd .titlebar:dir(ltr):not(headerbar), .solid-csd
931
headerbar:dir(rtl), .solid-csd
932
headerbar:dir(ltr) {
933
margin-left: -2px;
934
margin-right: -2px;
935
margin-top: -2px;
936
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); }
937
938
headerbar entry,
939
headerbar spinbutton,
940
headerbar button {
941
margin-top: 6px;
942
margin-bottom: 6px; }
943
headerbar switch {
944
margin-top: 12px;
945
margin-bottom: 12px; }
946
947
.background:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) .titlebar {
948
border-top-left-radius: 2px;
949
border-top-right-radius: 2px; }
950
951
window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) separator:first-child + headerbar, window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) headerbar:first-child {
952
border-top-left-radius: 2px; }
953
window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) headerbar:last-child {
954
border-top-right-radius: 2px; }
955
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 {
956
border-top-left-radius: 2px;
957
border-top-right-radius: 2px; }
958
959
window.csd > .titlebar:not(headerbar) {
960
padding: 0;
961
background-color: transparent;
962
background-image: none;
963
border-style: none;
964
box-shadow: none; }
965
.titlebar:not(headerbar) > separator {
966
background-color: #E0E0E0;
967
background-image: image(rgba(0, 0, 0, 0.1)); }
968
969
/************
970
* Pathbars *
971
************/
972
.caja-pathbar button,
973
.path-bar button {
974
padding-left: 6px;
975
padding-right: 6px; }
976
.caja-pathbar button label:not(:only-child):first-child,
977
.path-bar button label:not(:only-child):first-child {
978
margin-left: 4px; }
979
.caja-pathbar button label:not(:only-child):last-child,
980
.path-bar button label:not(:only-child):last-child {
981
margin-right: 4px; }
982
.caja-pathbar button.slider-button,
983
.path-bar button.slider-button {
984
padding-left: 4px;
985
padding-right: 4px; }
986
:not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar)
987
.path-bar button {
988
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
989
border-radius: 2px; }
990
:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar)
991
.path-bar button:checked {
992
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px; }
993
: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)
994
.path-bar button:checked, :not(headerbar)
995
.path-bar button:checked:disabled {
996
background-color: transparent; }
997
998
/**************
999
* Tree Views *
1000
**************/
1001
treeview.view {
1002
border-left-color: alpha(currentColor, 0.3);
1003
border-top-color: rgba(0, 0, 0, 0.1); }
1004
* {
1005
-GtkTreeView-horizontal-separator: 4;
1006
-GtkTreeView-grid-line-width: 1;
1007
-GtkTreeView-grid-line-pattern: '';
1008
-GtkTreeView-tree-line-width: 1;
1009
-GtkTreeView-tree-line-pattern: '';
1010
-GtkTreeView-expander-size: 16; }
1011
treeview.view:hover, treeview.view:active, treeview.view:selected {
1012
border-radius: 0; }
1013
treeview.view.separator {
1014
min-height: 5px;
1015
color: rgba(0, 0, 0, 0.1); }
1016
treeview.view:drop(active) {
1017
border-style: solid none;
1018
border-width: 1px;
1019
border-color: #FF4081; }
1020
treeview.view:drop(active).after {
1021
border-top-style: none; }
1022
treeview.view:drop(active).before {
1023
border-bottom-style: none; }
1024
treeview.view.expander {
1025
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
1026
-gtk-icon-transform: rotate(-90deg);
1027
color: rgba(0, 0, 0, 0.6); }
1028
treeview.view.expander:dir(rtl) {
1029
-gtk-icon-transform: rotate(90deg); }
1030
treeview.view.expander:checked {
1031
-gtk-icon-transform: unset; }
1032
treeview.view.expander:hover, treeview.view.expander:active {
1033
color: rgba(0, 0, 0, 0.8); }
1034
treeview.view.expander:disabled {
1035
color: rgba(0, 0, 0, 0.24); }
1036
treeview.view.expander:selected {
1037
color: rgba(255, 255, 255, 0.75); }
1038
treeview.view.expander:selected:hover, treeview.view.expander:selected:active {
1039
color: #FFFFFF; }
1040
treeview.view.expander:selected:disabled {
1041
color: rgba(255, 255, 255, 0.3); }
1042
treeview.view.progressbar {
1043
border-style: none none solid;
1044
border-width: 4px;
1045
border-color: #42A5F5;
1046
box-shadow: none;
1047
background-color: transparent; }
1048
treeview.view.progressbar:selected {
1049
border-color: currentColor; }
1050
treeview.view.trough {
1051
border-style: none none solid;
1052
border-width: 4px;
1053
border-color: rgba(66, 165, 245, 0.3);
1054
box-shadow: none;
1055
background-color: transparent; }
1056
treeview.view.trough:selected {
1057
border-color: alpha(currentColor, 0.3); }
1058
treeview.view header button {
1059
padding: 2px 6px;
1060
border-style: none solid solid none;
1061
border-width: 1px;
1062
border-color: rgba(0, 0, 0, 0.1);
1063
border-radius: 0;
1064
background-clip: border-box; }
1065
treeview.view header button, treeview.view header button:hover, treeview.view header button:active {
1066
box-shadow: none; }
1067
treeview.view header button, treeview.view header button:disabled {
1068
background-color: #FFFFFF; }
1069
treeview.view header button:last-child {
1070
border-right-style: none; }
1071
treeview.view button.dnd,
1072
treeview.view header.button.dnd {
1073
padding: 2px 6px;
1074
border-style: none solid solid;
1075
border-width: 1px;
1076
border-color: rgba(0, 0, 0, 0.1);
1077
border-radius: 0;
1078
box-shadow: none;
1079
background-color: #FFFFFF;
1080
background-clip: border-box;
1081
color: #42A5F5; }
1082
treeview.view acceleditor > label {
1083
background-color: #42A5F5; }
1084
1085
/*********
1086
* Menus *
1087
*********/
1088
menubar,
1089
.menubar {
1090
-GtkWidget-window-dragging: true;
1091
padding: 0;
1092
background-color: #E0E0E0; }
1093
menubar > menuitem,
1094
.menubar > menuitem {
1095
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
1096
min-height: 20px;
1097
padding: 4px 8px;
1098
color: rgba(0, 0, 0, 0.6); }
1099
menubar > menuitem:hover,
1100
.menubar > menuitem:hover {
1101
transition: none;
1102
background-color: alpha(currentColor, 0.15);
1103
color: rgba(0, 0, 0, 0.8); }
1104
menubar > menuitem:disabled,
1105
.menubar > menuitem:disabled {
1106
color: rgba(0, 0, 0, 0.24); }
1107
1108
.csd.popup {
1109
border-radius: 2px; }
1110
1111
menu,
1112
.menu,
1113
.context-menu {
1114
margin: 4px 0;
1115
padding: 4px 0;
1116
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
1117
background-color: #FFFFFF;
1118
border: 1px solid rgba(0, 0, 0, 0.1); }
1119
.csd menu, .csd
1120
.menu, .csd
1121
.context-menu {
1122
border: none;
1123
border-radius: 2px; }
1124
menu menuitem,
1125
.menu menuitem,
1126
.context-menu menuitem {
1127
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
1128
min-height: 20px;
1129
min-width: 40px;
1130
padding: 4px 8px;
1131
font: initial;
1132
text-shadow: none; }
1133
menu menuitem:hover,
1134
.menu menuitem:hover,
1135
.context-menu menuitem:hover {
1136
transition: none;
1137
background-color: alpha(currentColor, 0.15); }
1138
menu menuitem:disabled,
1139
.menu menuitem:disabled,
1140
.context-menu menuitem:disabled {
1141
color: rgba(0, 0, 0, 0.32); }
1142
menu menuitem arrow,
1143
.menu menuitem arrow,
1144
.context-menu menuitem arrow {
1145
min-height: 16px;
1146
min-width: 16px; }
1147
menu menuitem arrow:dir(ltr),
1148
.menu menuitem arrow:dir(ltr),
1149
.context-menu menuitem arrow:dir(ltr) {
1150
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
1151
margin-left: 8px; }
1152
menu menuitem arrow:dir(rtl),
1153
.menu menuitem arrow:dir(rtl),
1154
.context-menu menuitem arrow:dir(rtl) {
1155
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
1156
margin-right: 8px; }
1157
menu menuitem label:dir(rtl), menu menuitem label:dir(ltr),
1158
.menu menuitem label:dir(rtl),
1159
.menu menuitem label:dir(ltr),
1160
.context-menu menuitem label:dir(rtl),
1161
.context-menu menuitem label:dir(ltr) {
1162
color: inherit; }
1163
menu > arrow,
1164
.menu > arrow,
1165
.context-menu > arrow {
1166
min-height: 16px;
1167
min-width: 16px;
1168
padding: 4px;
1169
border-radius: 0;
1170
background-color: #FFFFFF;
1171
color: rgba(0, 0, 0, 0.6); }
1172
menu > arrow.top,
1173
.menu > arrow.top,
1174
.context-menu > arrow.top {
1175
margin-top: -4px;
1176
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1177
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
1178
menu > arrow.bottom,
1179
.menu > arrow.bottom,
1180
.context-menu > arrow.bottom {
1181
margin-bottom: -4px;
1182
border-top: 1px solid rgba(0, 0, 0, 0.1);
1183
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
1184
menu > arrow:hover,
1185
.menu > arrow:hover,
1186
.context-menu > arrow:hover {
1187
background-image: image(alpha(currentColor, 0.15));
1188
color: rgba(0, 0, 0, 0.8); }
1189
menu > arrow:disabled,
1190
.menu > arrow:disabled,
1191
.context-menu > arrow:disabled {
1192
border-color: transparent;
1193
background-color: transparent;
1194
color: transparent; }
1195
menu separator,
1196
.menu separator,
1197
.context-menu separator {
1198
margin: 4px 0; }
1199
1200
menuitem accelerator {
1201
color: alpha(currentColor, 0.6); }
1202
menuitem check:dir(ltr),
1203
menuitem radio:dir(ltr) {
1204
margin-right: -8px;
1205
margin-left: -16px; }
1206
menuitem check:dir(rtl),
1207
menuitem radio:dir(rtl) {
1208
margin-right: -16px;
1209
margin-left: -8px; }
1210
1211
.popup:not(.csd) menu menuitem {
1212
color: #333333; }
1213
.popup:not(.csd) menu menuitem:hover {
1214
background-color: #e0e0e0; }
1215
.popup:not(.csd) menu menuitem:disabled {
1216
color: #adadad; }
1217
.popup:not(.csd) menu accelerator {
1218
color: #858585; }
1219
1220
/************
1221
* Popovers *
1222
************/
1223
popover.background {
1224
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1225
padding: 2px;
1226
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
1227
background-color: #FAFAFA; }
1228
popover.background:backdrop {
1229
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
1230
popover.background, .csd popover.background {
1231
border-style: solid;
1232
border-width: 1px;
1233
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3);
1234
border-radius: 3px; }
1235
popover.background > stack {
1236
margin: -4px; }
1237
popover.background > toolbar {
1238
margin: -2px; }
1239
popover.background > list,
1240
popover.background > .view,
1241
popover.background > iconview,
1242
popover.background > toolbar {
1243
border-style: none;
1244
box-shadow: none;
1245
background-color: transparent; }
1246
popover.background.menu button,
1247
popover.background button.model {
1248
min-height: 32px;
1249
padding: 0 8px;
1250
border-radius: 2px; }
1251
popover.background separator {
1252
margin: 4px 0; }
1253
popover.background list separator {
1254
margin: 0; }
1255
1256
/*************
1257
* Notebooks *
1258
*************/
1259
notebook > header {
1260
border-width: 1px;
1261
border-color: rgba(0, 0, 0, 0.1);
1262
background-color: #F5F5F5;
1263
background-clip: border-box; }
1264
notebook > header.top {
1265
border-bottom-style: solid; }
1266
notebook > header.top > tabs {
1267
margin-bottom: -1px; }
1268
notebook > header.top > tabs > tab:hover {
1269
box-shadow: inset 0 -2px alpha(currentColor, 0.3); }
1270
notebook > header.top > tabs > tab:checked {
1271
box-shadow: inset 0 -2px #42A5F5; }
1272
notebook > header.bottom {
1273
border-top-style: solid; }
1274
notebook > header.bottom > tabs {
1275
margin-top: -1px; }
1276
notebook > header.bottom > tabs > tab:hover {
1277
box-shadow: inset 0 2px alpha(currentColor, 0.3); }
1278
notebook > header.bottom > tabs > tab:checked {
1279
box-shadow: inset 0 2px #42A5F5; }
1280
notebook > header.left {
1281
border-right-style: solid; }
1282
notebook > header.left > tabs {
1283
margin-right: -1px; }
1284
notebook > header.left > tabs > tab:hover {
1285
box-shadow: inset -2px 0 alpha(currentColor, 0.3); }
1286
notebook > header.left > tabs > tab:checked {
1287
box-shadow: inset -2px 0 #42A5F5; }
1288
notebook > header.right {
1289
border-left-style: solid; }
1290
notebook > header.right > tabs {
1291
margin-left: -1px; }
1292
notebook > header.right > tabs > tab:hover {
1293
box-shadow: inset 2px 0 alpha(currentColor, 0.3); }
1294
notebook > header.right > tabs > tab:checked {
1295
box-shadow: inset 2px 0 #42A5F5; }
1296
notebook > header.top > tabs > arrow {
1297
border-top-style: none; }
1298
notebook > header.bottom > tabs > arrow {
1299
border-bottom-style: none; }
1300
notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
1301
padding-left: 4px;
1302
padding-right: 4px; }
1303
notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
1304
margin-left: -8px;
1305
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
1306
notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
1307
margin-right: -8px;
1308
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
1309
notebook > header.left > tabs > arrow {
1310
border-left-style: none; }
1311
notebook > header.right > tabs > arrow {
1312
border-right-style: none; }
1313
notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
1314
padding-top: 4px;
1315
padding-bottom: 4px; }
1316
notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
1317
margin-top: -8px;
1318
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
1319
notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
1320
margin-bottom: -8px;
1321
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
1322
notebook > header > tabs > arrow {
1323
min-height: 16px;
1324
min-width: 16px;
1325
border-radius: 0; }
1326
notebook > header tab {
1327
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
1328
min-height: 24px;
1329
min-width: 24px;
1330
padding: 6px 12px;
1331
outline-offset: -6px;
1332
border-width: 1px;
1333
border-color: transparent;
1334
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 10%, transparent 0%);
1335
background-repeat: no-repeat;
1336
background-position: center;
1337
background-size: 0% 0%;
1338
color: rgba(0, 0, 0, 0.6);
1339
font-weight: 500; }
1340
notebook > header tab:hover {
1341
color: rgba(0, 0, 0, 0.8); }
1342
notebook > header tab:hover.reorderable-page {
1343
border-color: rgba(0, 0, 0, 0.1);
1344
background-color: #FAFAFA; }
1345
notebook > header tab:disabled {
1346
color: rgba(0, 0, 0, 0.24); }
1347
notebook > header tab:checked {
1348
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);
1349
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
1350
background-size: 1000% 1000%;
1351
color: rgba(0, 0, 0, 0.8); }
1352
notebook > header tab:checked:disabled {
1353
color: rgba(0, 0, 0, 0.32); }
1354
notebook > header tab:checked.reorderable-page {
1355
border-color: rgba(0, 0, 0, 0.1);
1356
background-color: #FFFFFF; }
1357
notebook > header tab button.flat:last-child {
1358
margin-left: 6px;
1359
margin-right: -6px; }
1360
notebook > header tab button.flat:first-child {
1361
margin-left: -6px;
1362
margin-right: 6px; }
1363
notebook > header.top tabs, notebook > header.bottom tabs {
1364
padding-left: 8px;
1365
padding-right: 8px; }
1366
notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child {
1367
margin-left: 0; }
1368
notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child {
1369
margin-right: 0; }
1370
notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page {
1371
margin: 0 -1px;
1372
border-style: none solid; }
1373
notebook > header.left tabs, notebook > header.right tabs {
1374
padding-top: 8px;
1375
padding-bottom: 8px; }
1376
notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child {
1377
margin-top: 0; }
1378
notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child {
1379
margin-bottom: 0; }
1380
notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page {
1381
margin: -1px 0;
1382
border-style: solid none; }
1383
notebook > stack:not(:only-child) {
1384
background-color: #FFFFFF; }
1385
1386
/**************
1387
* Scrollbars *
1388
**************/
1389
scrollbar {
1390
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
1391
background-color: #FFFFFF;
1392
background-clip: padding-box; }
1393
* {
1394
-GtkScrollbar-has-backward-stepper: false;
1395
-GtkScrollbar-has-forward-stepper: false; }
1396
scrollbar.top {
1397
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
1398
scrollbar.bottom {
1399
border-top: 1px solid rgba(0, 0, 0, 0.1); }
1400
scrollbar.left {
1401
border-right: 1px solid rgba(0, 0, 0, 0.1); }
1402
scrollbar.right {
1403
border-left: 1px solid rgba(0, 0, 0, 0.1); }
1404
scrollbar slider {
1405
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0;
1406
min-width: 8px;
1407
min-height: 8px;
1408
border: 4px solid transparent;
1409
border-radius: 9999px;
1410
background-clip: padding-box;
1411
background-color: rgba(0, 0, 0, 0.48); }
1412
scrollbar slider:hover {
1413
background-color: rgba(0, 0, 0, 0.6); }
1414
scrollbar slider:active {
1415
background-color: rgba(0, 0, 0, 0.8); }
1416
scrollbar slider:disabled {
1417
background-color: rgba(0, 0, 0, 0.192); }
1418
scrollbar.fine-tune slider {
1419
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0;
1420
min-width: 4px;
1421
min-height: 4px; }
1422
scrollbar.fine-tune.horizontal slider {
1423
margin: 2px 0; }
1424
scrollbar.fine-tune.vertical slider {
1425
margin: 0 2px; }
1426
scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
1427
border-color: transparent;
1428
background-color: transparent; }
1429
scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
1430
min-width: 4px;
1431
min-height: 4px;
1432
margin: 3px;
1433
border: 1px solid rgba(255, 255, 255, 0.3); }
1434
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
1435
min-width: 4px;
1436
min-height: 4px;
1437
margin: 3px;
1438
border: 1px solid rgba(255, 255, 255, 0.3);
1439
border-radius: 9999px;
1440
background-color: rgba(0, 0, 0, 0.48);
1441
background-clip: padding-box;
1442
-gtk-icon-source: none; }
1443
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled {
1444
background-color: rgba(0, 0, 0, 0.192); }
1445
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider {
1446
min-width: 24px; }
1447
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button {
1448
min-width: 8px; }
1449
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider {
1450
min-height: 24px; }
1451
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button {
1452
min-height: 8px; }
1453
scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
1454
background-color: rgba(255, 255, 255, 0.9); }
1455
scrollbar.horizontal slider {
1456
min-width: 24px; }
1457
scrollbar.vertical slider {
1458
min-height: 24px; }
1459
scrollbar button {
1460
min-width: 16px;
1461
min-height: 16px;
1462
padding: 0;
1463
border-radius: 0; }
1464
scrollbar.vertical button.down {
1465
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
1466
scrollbar.vertical button.up {
1467
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
1468
scrollbar.horizontal button.down {
1469
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
1470
scrollbar.horizontal button.up {
1471
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
1472
1473
/**********
1474
* Switch *
1475
**********/
1476
switch {
1477
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
1478
margin: 6px 0;
1479
border: 4px solid transparent;
1480
border-radius: 9999px;
1481
background-color: alpha(currentColor, 0.3);
1482
background-clip: padding-box;
1483
font-size: 0; }
1484
switch:disabled {
1485
color: alpha(currentColor, 0.4); }
1486
switch:checked {
1487
background-color: rgba(255, 64, 129, 0.5); }
1488
switch:checked:disabled {
1489
background-color: rgba(255, 64, 129, 0.2);
1490
color: rgba(0, 0, 0, 0.32); }
1491
switch slider {
1492
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1493
border-image: none;
1494
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1495
background-color: #FFFFFF;
1496
color: rgba(0, 0, 0, 0.8);
1497
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0;
1498
min-width: 24px;
1499
min-height: 24px;
1500
margin: -4px 0 -4px -4px;
1501
border-radius: 9999px;
1502
-gtk-outline-radius: 9999px; }
1503
switch:hover slider {
1504
border-image: none;
1505
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
1506
switch:checked slider {
1507
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0, background-image 0, background-color 0.00001s 0.3s;
1508
animation: needs_attention 0.3s cubic-bezier(0, 0, 0.2, 1);
1509
margin: -4px -4px -4px 0;
1510
background-color: #FF4081;
1511
color: #FFFFFF; }
1512
switch:disabled slider {
1513
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1514
background-color: #FAFAFA;
1515
color: rgba(0, 0, 0, 0.32); }
1516
switch:checked:disabled slider {
1517
animation: none; }
1518
1519
/*************************
1520
* Check and Radio items *
1521
*************************/
1522
.view.content-view.check:not(list), iconview.content-view.check:not(list) {
1523
margin: 8px;
1524
box-shadow: none;
1525
background-color: transparent;
1526
background-image: none;
1527
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png"));
1528
-gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
1529
.view.content-view.check:not(list):hover, iconview.content-view.check:not(list):hover, .view.content-view.check:not(list):active, iconview.content-view.check:not(list):active {
1530
-gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
1531
1532
.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) {
1533
margin: 8px;
1534
box-shadow: none;
1535
background-color: transparent;
1536
background-image: none;
1537
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png"));
1538
-gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
1539
.view.content-view.check:checked:not(list):hover, iconview.content-view.check:checked:not(list):hover, .view.content-view.check:checked:not(list):active, iconview.content-view.check:checked:not(list):active {
1540
-gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
1541
1542
checkbutton.text-button,
1543
radiobutton.text-button {
1544
padding: 2px;
1545
outline-offset: 0; }
1546
checkbutton.text-button label:not(:only-child),
1547
radiobutton.text-button label:not(:only-child) {
1548
margin: 0 4px; }
1549
1550
check,
1551
radio {
1552
min-height: 24px;
1553
min-width: 24px;
1554
margin: -12px;
1555
padding: 12px; }
1556
check:checked, check:indeterminate,
1557
radio:checked,
1558
radio:indeterminate {
1559
color: #FF4081; }
1560
check:checked:disabled, check:indeterminate:disabled,
1561
radio:checked:disabled,
1562
radio:indeterminate:disabled {
1563
color: rgba(255, 64, 129, 0.4); }
1564
row check:not(:checked):not(:indeterminate), row
1565
radio:not(:checked):not(:indeterminate) {
1566
color: alpha(currentColor, 0.75); }
1567
row check:not(:checked):not(:indeterminate):hover, row check:not(:checked):not(:indeterminate):active, row
1568
radio:not(:checked):not(:indeterminate):hover, row
1569
radio:not(:checked):not(:indeterminate):active {
1570
color: currentColor; }
1571
row check:not(:checked):not(:indeterminate):disabled, row
1572
radio:not(:checked):not(:indeterminate):disabled {
1573
color: alpha(currentColor, 0.3); }
1574
menu menuitem check, menu menuitem
1575
radio {
1576
transition: none;
1577
margin: -16px; }
1578
menu menuitem check:not(:checked):not(:indeterminate), menu menuitem
1579
radio:not(:checked):not(:indeterminate) {
1580
color: alpha(currentColor, 0.6); }
1581
menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem
1582
radio, menu menuitem
1583
radio:hover, menu menuitem
1584
radio:disabled {
1585
box-shadow: none; }
1586
1587
check {
1588
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.png"))); }
1589
check:checked {
1590
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.png"))); }
1591
check:indeterminate {
1592
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.png"))); }
1593
1594
radio {
1595
border-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)) 24/24px; }
1596
radio {
1597
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.png"))); }
1598
radio:indeterminate {
1599
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.png"))); }
1600
radio:checked {
1601
border-image: -gtk-gradient(radial, center center, 0, center center, 0.10417, to(#FF4081), to(transparent)) 24/24px; }
1602
radio:checked:disabled {
1603
border-image: -gtk-gradient(radial, center center, 0, center center, 0.10417, to(rgba(255, 64, 129, 0.4)), to(transparent)) 24/24px; }
1604
radio:indeterminate:checked {
1605
border-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)) 24/24px; }
1606
1607
@keyframes check_check {
1608
from {
1609
-gtk-icon-transform: rotate(90deg); }
1610
to {
1611
-gtk-icon-transform: unset; } }
1612
@keyframes check_radio {
1613
from {
1614
border-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)) 24/24px; }
1615
to {
1616
border-image: -gtk-gradient(radial, center center, 0, center center, 0.10417, to(#FF4081), to(transparent)) 24/24px; } }
1617
@keyframes check_indeterminate {
1618
from {
1619
-gtk-icon-transform: unset; }
1620
50% {
1621
-gtk-icon-transform: scale(0, 1); }
1622
to {
1623
-gtk-icon-transform: unset; } }
1624
modelbutton.flat check:not(:indeterminate):checked,
1625
.menuitem.button.flat check:not(:indeterminate):checked,
1626
check:not(:indeterminate):checked {
1627
animation: check_check 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
1628
1629
check:not(:indeterminate):checked:active {
1630
animation: check_check 0.3s cubic-bezier(0.4, 0, 0.2, 1), ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards; }
1631
1632
modelbutton.flat check:indeterminate:checked, modelbutton.flat radio:indeterminate:checked,
1633
.menuitem.button.flat check:indeterminate:checked,
1634
.menuitem.button.flat radio:indeterminate:checked,
1635
check:indeterminate:checked, radio:indeterminate:checked {
1636
animation: check_indeterminate 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
1637
1638
check:indeterminate:checked:active, radio:indeterminate:checked:active {
1639
animation: check_indeterminate 0.3s cubic-bezier(0.4, 0, 0.2, 1), ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards; }
1640
1641
menu menuitem check:not(:indeterminate):checked,
1642
menu menuitem radio:not(:indeterminate):checked,
1643
menu menuitem check:indeterminate:checked,
1644
menu menuitem radio:indeterminate:checked {
1645
animation: none; }
1646
1647
treeview.view check,
1648
treeview.view radio {
1649
padding: 0; }
1650
treeview.view check:hover,
1651
treeview.view radio:hover {
1652
box-shadow: inset 0 0 0 9999px alpha(rgba(0, 0, 0, 0.8), 0.05); }
1653
treeview.view check:hover:disabled,
1654
treeview.view radio:hover:disabled {
1655
box-shadow: none; }
1656
treeview.view check:hover:selected,
1657
treeview.view radio:hover:selected {
1658
box-shadow: inset 0 0 0 9999px alpha(#FFFFFF, 0.05); }
1659
treeview.view check,
1660
treeview.view radio {
1661
color: rgba(0, 0, 0, 0.6); }
1662
treeview.view check:hover, treeview.view check:active,
1663
treeview.view radio:hover,
1664
treeview.view radio:active {
1665
color: rgba(0, 0, 0, 0.8); }
1666
treeview.view check:disabled,
1667
treeview.view radio:disabled {
1668
color: rgba(0, 0, 0, 0.24); }
1669
treeview.view check:checked, treeview.view check:indeterminate,
1670
treeview.view radio:checked,
1671
treeview.view radio:indeterminate {
1672
color: #FF4081; }
1673
treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled,
1674
treeview.view radio:checked:disabled,
1675
treeview.view radio:indeterminate:disabled {
1676
color: rgba(255, 64, 129, 0.4); }
1677
treeview.view check:selected,
1678
treeview.view radio:selected {
1679
color: rgba(255, 255, 255, 0.75); }
1680
treeview.view check:selected:hover, treeview.view check:selected:active,
1681
treeview.view radio:selected:hover,
1682
treeview.view radio:selected:active {
1683
color: #FFFFFF; }
1684
treeview.view check:selected:disabled,
1685
treeview.view radio:selected:disabled {
1686
color: rgba(255, 255, 255, 0.3); }
1687
treeview.view check:selected:checked, treeview.view check:selected:indeterminate,
1688
treeview.view radio:selected:checked,
1689
treeview.view radio:selected:indeterminate {
1690
color: #FF4081; }
1691
treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled,
1692
treeview.view radio:selected:checked:disabled,
1693
treeview.view radio:selected:indeterminate:disabled {
1694
color: rgba(255, 64, 129, 0.4); }
1695
1696
treeview.view radio:checked {
1697
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic.png")));
1698
border-image: none; }
1699
1700
/************
1701
* GtkScale *
1702
************/
1703
scale {
1704
min-height: 12px;
1705
min-width: 12px;
1706
padding: 12px; }
1707
scale * {
1708
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1); }
1709
scale slider {
1710
min-height: 24px;
1711
min-width: 24px;
1712
margin: -10px; }
1713
scale trough {
1714
outline-offset: 2px;
1715
background-color: alpha(currentColor, 0.3); }
1716
scale trough:disabled {
1717
color: rgba(0, 0, 0, 0.32); }
1718
scale highlight {
1719
background-color: #FF4081; }
1720
scale highlight:disabled {
1721
background-color: transparent; }
1722
scale fill {
1723
background-color: alpha(currentColor, 0.3); }
1724
scale fill:disabled {
1725
background-color: transparent; }
1726
scale slider {
1727
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1728
background-repeat: no-repeat;
1729
background-position: center;
1730
background-size: calc(100% - 8px); }
1731
scale slider {
1732
background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")); }
1733
scale slider:disabled {
1734
background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png")); }
1735
scale slider:hover {
1736
background-size: calc(100% - 4px); }
1737
scale slider:active {
1738
background-size: calc(100% - 0px); }
1739
scale.fine-tune slider {
1740
background-size: calc(100% - 12px); }
1741
scale value {
1742
color: alpha(currentColor, 0.6); }
1743
scale marks {
1744
color: alpha(currentColor, 0.3); }
1745
scale marks.top {
1746
margin-bottom: 8px;
1747
margin-top: -16px; }
1748
scale marks.bottom {
1749
margin-top: 8px;
1750
margin-bottom: -16px; }
1751
scale marks.top {
1752
margin-right: 8px;
1753
margin-left: -16px; }
1754
scale marks.bottom {
1755
margin-left: 8px;
1756
margin-right: -16px; }
1757
scale.horizontal indicator {
1758
min-height: 8px;
1759
min-width: 1px; }
1760
scale.vertical indicator {
1761
min-height: 1px;
1762
min-width: 8px; }
1763
scale.horizontal.marks-before:not(.marks-after) slider {
1764
min-height: 30px;
1765
min-width: 24px;
1766
margin-top: -16px;
1767
background-position: center calc(100% - 4px); }
1768
scale.horizontal.marks-before:not(.marks-after) slider {
1769
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); }
1770
scale.horizontal.marks-before:not(.marks-after) slider:disabled {
1771
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png")); }
1772
scale.horizontal.marks-before:not(.marks-after) slider:hover {
1773
background-position: center calc(100% - 2px); }
1774
scale.horizontal.marks-before:not(.marks-after) slider:active {
1775
background-position: center calc(100% - 0px); }
1776
scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
1777
background-position: center calc(100% - 6px); }
1778
scale.horizontal.marks-after:not(.marks-before) slider {
1779
min-height: 30px;
1780
min-width: 24px;
1781
margin-bottom: -16px;
1782
background-position: center calc(4px); }
1783
scale.horizontal.marks-after:not(.marks-before) slider {
1784
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")); }
1785
scale.horizontal.marks-after:not(.marks-before) slider:disabled {
1786
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png")); }
1787
scale.horizontal.marks-after:not(.marks-before) slider:hover {
1788
background-position: center calc(2px); }
1789
scale.horizontal.marks-after:not(.marks-before) slider:active {
1790
background-position: center calc(0px); }
1791
scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
1792
background-position: center calc(6px); }
1793
scale.vertical.marks-before:not(.marks-after) slider {
1794
min-height: 24px;
1795
min-width: 30px;
1796
margin-left: -16px;
1797
background-position: calc(4px) center; }
1798
scale.vertical.marks-before:not(.marks-after) slider {
1799
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")); }
1800
scale.vertical.marks-before:not(.marks-after) slider:disabled {
1801
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png")); }
1802
scale.vertical.marks-before:not(.marks-after) slider:hover {
1803
background-position: calc(2px) center; }
1804
scale.vertical.marks-before:not(.marks-after) slider:active {
1805
background-position: calc(0px) center; }
1806
scale.vertical.marks-before:not(.marks-after).fine-tune slider {
1807
background-position: calc(6px) center; }
1808
scale.vertical.marks-after:not(.marks-before) slider {
1809
min-height: 24px;
1810
min-width: 30px;
1811
margin-right: -16px;
1812
background-position: calc(100% - 4px) center; }
1813
scale.vertical.marks-after:not(.marks-before) slider {
1814
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")); }
1815
scale.vertical.marks-after:not(.marks-before) slider:disabled {
1816
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png")); }
1817
scale.vertical.marks-after:not(.marks-before) slider:hover {
1818
background-position: calc(100% - 2px) center; }
1819
scale.vertical.marks-after:not(.marks-before) slider:active {
1820
background-position: calc(100% - 0px) center; }
1821
scale.vertical.marks-after:not(.marks-before).fine-tune slider {
1822
background-position: calc(100% - 6px) center; }
1823
scale.color {
1824
min-height: 0;
1825
min-width: 0; }
1826
scale.color.horizontal {
1827
padding: 0 0 12px 0; }
1828
scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) {
1829
margin-bottom: -12px;
1830
margin-top: -2px; }
1831
scale.color.vertical:dir(ltr) {
1832
padding: 0 0 0 12px; }
1833
scale.color.vertical:dir(ltr) slider {
1834
margin-left: -12px;
1835
margin-right: -2px; }
1836
scale.color.vertical:dir(rtl) {
1837
padding: 0 12px 0 0; }
1838
scale.color.vertical:dir(rtl) slider {
1839
margin-right: -12px;
1840
margin-left: -2px; }
1841
1842
/*****************
1843
* Progress bars *
1844
*****************/
1845
progressbar {
1846
color: rgba(0, 0, 0, 0.48);
1847
font-size: smaller; }
1848
progressbar.horizontal trough,
1849
progressbar.horizontal progress {
1850
min-height: 4px; }
1851
progressbar.vertical trough,
1852
progressbar.vertical progress {
1853
min-width: 4px; }
1854
progressbar trough {
1855
background-color: rgba(66, 165, 245, 0.3); }
1856
progressbar progress {
1857
background-color: #42A5F5; }
1858
progressbar trough.empty progress {
1859
all: unset; }
1860
1861
/*************
1862
* Level Bar *
1863
*************/
1864
levelbar block {
1865
min-width: 36px;
1866
min-height: 4px; }
1867
levelbar.vertical block {
1868
min-width: 4px;
1869
min-height: 36px; }
1870
levelbar trough {
1871
padding: 2px;
1872
border-radius: 2px;
1873
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1874
border-image: none;
1875
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1876
background-color: #FFFFFF;
1877
color: rgba(0, 0, 0, 0.8); }
1878
levelbar trough:disabled {
1879
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1880
background-color: #FAFAFA;
1881
color: rgba(0, 0, 0, 0.32); }
1882
levelbar.horizontal.discrete block {
1883
margin: 0 1px; }
1884
levelbar.vertical.discrete block {
1885
margin: 1px 0; }
1886
levelbar.horizontal.discrete trough {
1887
padding: 2px 1px; }
1888
levelbar.vertical.discrete trough {
1889
padding: 1px 2px; }
1890
levelbar block.low {
1891
background-color: #FF6D00; }
1892
levelbar block.high, levelbar block:not(.empty) {
1893
background-color: #42A5F5; }
1894
levelbar block.full {
1895
background-color: #00C853; }
1896
levelbar block.empty {
1897
background-color: alpha(currentColor, 0.3);
1898
color: rgba(0, 0, 0, 0.32); }
1899
1900
/****************
1901
* Print dialog *
1902
*****************/
1903
printdialog paper {
1904
padding: 0;
1905
border: 1px solid rgba(0, 0, 0, 0.1);
1906
background: #FFFFFF;
1907
color: rgba(0, 0, 0, 0.8); }
1908
printdialog .dialog-action-box {
1909
margin: 12px; }
1910
1911
/**********
1912
* Frames *
1913
**********/
1914
frame > border,
1915
.frame {
1916
margin: 0;
1917
padding: 0;
1918
border: 1px solid rgba(0, 0, 0, 0.1);
1919
border-radius: 0;
1920
box-shadow: none; }
1921
frame > border.flat,
1922
.frame.flat {
1923
border-style: none; }
1924
1925
actionbar > revealer > box {
1926
padding: 6px;
1927
border-top: 1px solid rgba(0, 0, 0, 0.1); }
1928
1929
scrolledwindow viewport.frame {
1930
border-style: none; }
1931
overshoot.top {
1932
background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1933
background-repeat: no-repeat;
1934
background-position: center top;
1935
background-color: transparent;
1936
border: none;
1937
box-shadow: none; }
1938
overshoot.bottom {
1939
background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1940
background-repeat: no-repeat;
1941
background-position: center bottom;
1942
background-color: transparent;
1943
border: none;
1944
box-shadow: none; }
1945
overshoot.left {
1946
background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1947
background-repeat: no-repeat;
1948
background-position: left center;
1949
background-color: transparent;
1950
border: none;
1951
box-shadow: none; }
1952
overshoot.right {
1953
background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1954
background-repeat: no-repeat;
1955
background-position: right center;
1956
background-color: transparent;
1957
border: none;
1958
box-shadow: none; }
1959
undershoot.top {
1960
background-color: transparent;
1961
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1962
padding-top: 1px;
1963
background-size: 12px 1px;
1964
background-repeat: repeat-x;
1965
background-origin: content-box;
1966
background-position: left top; }
1967
undershoot.bottom {
1968
background-color: transparent;
1969
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1970
padding-bottom: 1px;
1971
background-size: 12px 1px;
1972
background-repeat: repeat-x;
1973
background-origin: content-box;
1974
background-position: left bottom; }
1975
undershoot.left {
1976
background-color: transparent;
1977
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1978
padding-left: 1px;
1979
background-size: 1px 12px;
1980
background-repeat: repeat-y;
1981
background-origin: content-box;
1982
background-position: left top; }
1983
undershoot.right {
1984
background-color: transparent;
1985
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1986
padding-right: 1px;
1987
background-size: 1px 12px;
1988
background-repeat: repeat-y;
1989
background-origin: content-box;
1990
background-position: right top; }
1991
junction {
1992
border-style: solid none none solid;
1993
border-width: 1px;
1994
border-color: rgba(0, 0, 0, 0.1);
1995
background-color: #FFFFFF; }
1996
junction:dir(rtl) {
1997
border-style: solid solid none none; }
1998
1999
separator {
2000
min-width: 1px;
2001
min-height: 1px;
2002
background: rgba(0, 0, 0, 0.1); }
2003
2004
/*********
2005
* Lists *
2006
*********/
2007
list {
2008
border-color: rgba(0, 0, 0, 0.1);
2009
background-color: #FFFFFF; }
2010
list row {
2011
padding: 2px; }
2012
2013
row.activatable, .view, iconview, treeview.view header button {
2014
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);
2015
box-shadow: inset 0 0 0 9999px transparent;
2016
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
2017
background-repeat: no-repeat;
2018
background-position: center;
2019
background-size: 1000% 1000%; }
2020
row.activatable:hover, .view:hover, iconview:hover, treeview.view header button:hover {
2021
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);
2022
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); }
2023
row.activatable.has-open-popup, .has-open-popup.view, iconview.has-open-popup, treeview.view header button.has-open-popup, row.activatable:active, .view:active, iconview:active, treeview.view header button:active {
2024
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0;
2025
animation: ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
2026
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15);
2027
background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%);
2028
background-size: 0% 0%; }
2029
2030
/*********************
2031
* App Notifications *
2032
*********************/
2033
.app-notification {
2034
margin: 8px; }
2035
.app-notification.frame,
2036
.app-notification border {
2037
border-style: none; }
2038
2039
/*************
2040
* Expanders *
2041
*************/
2042
expander arrow {
2043
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
2044
min-width: 16px;
2045
min-height: 16px;
2046
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
2047
-gtk-icon-transform: rotate(-90deg);
2048
color: rgba(0, 0, 0, 0.6); }
2049
expander arrow:dir(rtl) {
2050
-gtk-icon-transform: rotate(90deg); }
2051
expander arrow:checked {
2052
-gtk-icon-transform: unset; }
2053
expander arrow:hover, expander arrow:active {
2054
color: rgba(0, 0, 0, 0.8); }
2055
expander arrow:disabled {
2056
color: rgba(0, 0, 0, 0.24); }
2057
expander arrow:selected {
2058
color: rgba(255, 255, 255, 0.75); }
2059
expander arrow:selected:hover, expander arrow:selected:active {
2060
color: #FFFFFF; }
2061
expander arrow:selected:disabled {
2062
color: rgba(255, 255, 255, 0.3); }
2063
2064
/************
2065
* Calendar *
2066
***********/
2067
calendar {
2068
padding: 1px;
2069
border: 1px solid rgba(0, 0, 0, 0.1);
2070
color: rgba(0, 0, 0, 0.8); }
2071
calendar:disabled {
2072
color: rgba(0, 0, 0, 0.32); }
2073
calendar:selected {
2074
border-radius: 3px; }
2075
calendar.header {
2076
border-style: none none solid;
2077
border-radius: 0; }
2078
calendar.highlight {
2079
color: alpha(currentColor, 0.6);
2080
font-weight: 500; }
2081
calendar:indeterminate {
2082
color: alpha(currentColor, 0.4); }
2083
2084
/***********
2085
* Dialogs *
2086
***********/
2087
messagedialog.background {
2088
background-color: #FAFAFA; }
2089
messagedialog .titlebar {
2090
min-height: 24px;
2091
border-style: none;
2092
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
2093
background-color: #FAFAFA;
2094
color: rgba(0, 0, 0, 0.8); }
2095
messagedialog .titlebar:backdrop {
2096
color: rgba(0, 0, 0, 0.6); }
2097
messagedialog.csd.background {
2098
border-bottom-left-radius: 2px;
2099
border-bottom-right-radius: 2px; }
2100
messagedialog.csd .dialog-action-area button {
2101
padding: 8px 16px;
2102
border-top: 1px solid rgba(0, 0, 0, 0.1);
2103
border-radius: 0; }
2104
messagedialog.csd .dialog-action-area button:first-child {
2105
border-bottom-left-radius: 2px; }
2106
messagedialog.csd .dialog-action-area button:last-child {
2107
border-bottom-right-radius: 2px; }
2108
2109
filechooser .dialog-action-box {
2110
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2111
filechooser #pathbarbox {
2112
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2113
background-color: #F5F5F5; }
2114
2115
filechooserbutton:drop(active) {
2116
box-shadow: none; }
2117
2118
/***********
2119
* Sidebar *
2120
***********/
2121
.sidebar {
2122
border-style: none;
2123
background-color: #FAFAFA; }
2124
stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) {
2125
border-right: 1px solid rgba(0, 0, 0, 0.1);
2126
border-left-style: none; }
2127
stacksidebar.sidebar:dir(rtl) list
2128
.sidebar:dir(rtl), stacksidebar.sidebar.right list
2129
.sidebar:dir(rtl), .sidebar.right {
2130
border-left: 1px solid rgba(0, 0, 0, 0.1);
2131
border-right-style: none; }
2132
.sidebar list {
2133
background-color: transparent; }
2134
paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar {
2135
border-style: none; }
2136
2137
stacksidebar row {
2138
padding: 10px 4px; }
2139
stacksidebar row > label {
2140
padding-left: 6px;
2141
padding-right: 6px; }
2142
2143
/****************
2144
* File chooser *
2145
****************/
2146
placessidebar > viewport.frame {
2147
border-style: none; }
2148
placessidebar list {
2149
padding: 1px 0 4px; }
2150
placessidebar row {
2151
min-height: 32px;
2152
margin: -1px 0;
2153
padding: 0; }
2154
placessidebar row > revealer {
2155
padding: 0 12px; }
2156
placessidebar row:selected {
2157
color: #FFFFFF; }
2158
placessidebar row:disabled {
2159
color: rgba(0, 0, 0, 0.32); }
2160
placessidebar row image.sidebar-icon {
2161
opacity: 0.6; }
2162
placessidebar row image.sidebar-icon:dir(ltr) {
2163
padding-right: 8px; }
2164
placessidebar row image.sidebar-icon:dir(rtl) {
2165
padding-left: 8px; }
2166
placessidebar row label.sidebar-label:dir(ltr) {
2167
padding-right: 2px; }
2168
placessidebar row label.sidebar-label:dir(rtl) {
2169
padding-left: 2px; }
2170
placessidebar row.sidebar-placeholder-row {
2171
min-height: 2px;
2172
padding: 0 8px;
2173
background-image: image(#FF4081);
2174
background-clip: content-box; }
2175
placessidebar row.sidebar-new-bookmark-row {
2176
color: #FF4081; }
2177
placessidebar row:drop(active):not(:disabled) {
2178
box-shadow: inset 0 0 0 2px #FF4081; }
2179
2180
placesview .server-list-button > image {
2181
-gtk-icon-transform: rotate(0turn); }
2182
placesview .server-list-button:checked > image {
2183
-gtk-icon-transform: rotate(-0.5turn); }
2184
placesview > actionbar > revealer > box > label {
2185
padding-left: 8px;
2186
padding-right: 8px; }
2187
2188
/*********
2189
* Paned *
2190
*********/
2191
paned > separator {
2192
min-width: 1px;
2193
min-height: 1px;
2194
-gtk-icon-source: none;
2195
border-style: none;
2196
background-color: transparent;
2197
background-image: image(rgba(0, 0, 0, 0.1));
2198
background-size: 1px 1px;
2199
background-clip: content-box; }
2200
paned > separator.wide {
2201
min-width: 6px;
2202
min-height: 6px;
2203
background-color: #F5F5F5;
2204
background-image: image(rgba(0, 0, 0, 0.1)), image(rgba(0, 0, 0, 0.1));
2205
background-size: 1px 1px, 1px 1px; }
2206
paned.horizontal > separator {
2207
background-repeat: repeat-y; }
2208
paned.horizontal > separator:dir(ltr) {
2209
margin: 0 -8px 0 0;
2210
padding: 0 8px 0 0;
2211
background-position: left; }
2212
paned.horizontal > separator:dir(rtl) {
2213
margin: 0 0 0 -8px;
2214
padding: 0 0 0 8px;
2215
background-position: right; }
2216
paned.horizontal > separator.wide {
2217
margin: 0;
2218
padding: 0;
2219
background-repeat: repeat-y, repeat-y;
2220
background-position: left, right; }
2221
paned.vertical > separator {
2222
margin: 0 0 -8px 0;
2223
padding: 0 0 8px 0;
2224
background-repeat: repeat-x;
2225
background-position: top; }
2226
paned.vertical > separator.wide {
2227
margin: 0;
2228
padding: 0;
2229
background-repeat: repeat-x, repeat-x;
2230
background-position: bottom, top; }
2231
2232
/**************
2233
* GtkInfoBar *
2234
**************/
2235
infobar {
2236
border-style: none; }
2237
infobar.info {
2238
background-color: #66BB6A; }
2239
infobar.question {
2240
background-color: #42A5F5; }
2241
infobar.warning {
2242
background-color: #FFA726; }
2243
infobar.error {
2244
background-color: #EF5350; }
2245
infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error {
2246
color: #FFFFFF; }
2247
2248
/************
2249
* Tooltips *
2250
************/
2251
tooltip {
2252
border-radius: 2px;
2253
box-shadow: none; }
2254
tooltip.background {
2255
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
2256
background-color: rgba(255, 255, 255, 0.9); }
2257
tooltip:not(.csd) {
2258
border: 1px solid rgba(0, 0, 0, 0.1);
2259
border-radius: 3px;
2260
background-clip: padding-box; }
2261
tooltip decoration {
2262
background-color: transparent; }
2263
tooltip label {
2264
min-height: 20px;
2265
padding: 0 2px; }
2266
2267
/*****************
2268
* Color Chooser *
2269
*****************/
2270
colorswatch.top {
2271
border-top-left-radius: 2.5px;
2272
border-top-right-radius: 2.5px; }
2273
colorswatch.top overlay {
2274
border-top-left-radius: 2px;
2275
border-top-right-radius: 2px; }
2276
colorswatch.bottom {
2277
border-bottom-left-radius: 2.5px;
2278
border-bottom-right-radius: 2.5px; }
2279
colorswatch.bottom overlay {
2280
border-bottom-left-radius: 2px;
2281
border-bottom-right-radius: 2px; }
2282
colorswatch.left, colorswatch:first-child:not(.top) {
2283
border-top-left-radius: 2.5px;
2284
border-bottom-left-radius: 2.5px; }
2285
colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
2286
border-top-left-radius: 2px;
2287
border-bottom-left-radius: 2px; }
2288
colorswatch.right, colorswatch:last-child:not(.bottom) {
2289
border-top-right-radius: 2.5px;
2290
border-bottom-right-radius: 2.5px; }
2291
colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
2292
border-top-right-radius: 2px;
2293
border-bottom-right-radius: 2px; }
2294
colorswatch.dark overlay {
2295
color: #FFFFFF; }
2296
colorswatch.light overlay {
2297
color: rgba(0, 0, 0, 0.8); }
2298
colorswatch.dark {
2299
color: #FFFFFF; }
2300
colorswatch.light {
2301
color: rgba(0, 0, 0, 0.8); }
2302
colorswatch:drop(active) {
2303
box-shadow: none; }
2304
colorswatch:drop(active).light overlay {
2305
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; }
2306
colorswatch:drop(active).dark overlay {
2307
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; }
2308
colorswatch overlay {
2309
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
2310
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
2311
colorswatch overlay:hover {
2312
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
2313
colorswatch#add-color-button {
2314
border-radius: 2px 2px 0 0;
2315
color: #FFFFFF; }
2316
colorswatch#add-color-button:only-child {
2317
border-radius: 2px; }
2318
colorswatch#add-color-button overlay {
2319
background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #42A5F5 75%);
2320
color: #FFFFFF; }
2321
colorswatch:disabled {
2322
opacity: 0.4; }
2323
colorswatch:disabled overlay {
2324
box-shadow: none; }
2325
colorswatch#editor-color-sample {
2326
border-radius: 2.5px; }
2327
colorswatch#editor-color-sample overlay {
2328
border-radius: 2px; }
2329
2330
colorchooser .popover.osd {
2331
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
2332
border-radius: 2px;
2333
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);
2334
background-color: #FFFFFF; }
2335
colorchooser .popover.osd:backdrop {
2336
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); }
2337
2338
/********
2339
* Misc *
2340
********/
2341
.content-view {
2342
background-color: #F5F5F5; }
2343
2344
/**********************
2345
* Window Decorations *
2346
*********************/
2347
decoration {
2348
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
2349
border-radius: 2px 2px 0 0;
2350
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent;
2351
margin: 8px; }
2352
decoration:backdrop {
2353
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent; }
2354
.maximized decoration, .fullscreen decoration, .tiled decoration {
2355
border-radius: 0; }
2356
.popup decoration {
2357
box-shadow: none; }
2358
.ssd decoration {
2359
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); }
2360
.csd.popup decoration {
2361
border-radius: 2px;
2362
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
2363
tooltip.csd decoration {
2364
border-radius: 2px;
2365
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
2366
messagedialog.csd decoration {
2367
border-radius: 2px; }
2368
.solid-csd decoration {
2369
margin: 0;
2370
padding: 4px;
2371
box-shadow: inset 0 0 0 4px #E0E0E0; }
2372
2373
.view:selected, iconview:selected, .view text selection, iconview text selection,
2374
textview text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
2375
entry selection, modelbutton.flat:selected,
2376
.menuitem.button.flat:selected, popover.background.menu button:checked,
2377
popover.background button.model:checked, row:selected, calendar:selected {
2378
background-color: #42A5F5; }
2379
row:selected label, label:selected, .view:selected, iconview:selected, .view text selection, iconview text selection,
2380
textview text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
2381
entry selection, modelbutton.flat:selected,
2382
.menuitem.button.flat:selected, popover.background.menu button:checked,
2383
popover.background button.model:checked, row:selected, calendar:selected {
2384
color: #FFFFFF; }
2385
row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, .view text selection:disabled, iconview text selection:disabled,
2386
textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled,
2387
entry selection:disabled, modelbutton.flat:disabled:selected,
2388
.menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked,
2389
popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected {
2390
color: rgba(255, 255, 255, 0.4); }
2391
2392
.monospace {
2393
font-family: monospace; }
2394
2395
/**********************
2396
* Touch Copy & Paste *
2397
*********************/
2398
cursor-handle {
2399
border-radius: 9999px;
2400
background-color: #FF4081;
2401
background-image: none; }
2402
cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) {
2403
padding-left: 6px;
2404
border-top-right-radius: 0; }
2405
cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) {
2406
padding-right: 6px;
2407
border-top-left-radius: 0; }
2408
cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) {
2409
-GtkWidget-text-handle-width: 24;
2410
-GtkWidget-text-handle-height: 30;
2411
-gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); }
2412
2413
.context-menu {
2414
font: initial; }
2415
2416
.keycap {
2417
min-width: 12px;
2418
min-height: 26px;
2419
margin-top: 2px;
2420
padding-bottom: 2px;
2421
padding-left: 8px;
2422
padding-right: 8px;
2423
border: solid 1px rgba(0, 0, 0, 0.1);
2424
border-radius: 3px;
2425
box-shadow: inset 0 -2px rgba(0, 0, 0, 0.1);
2426
background-color: #FFFFFF;
2427
color: rgba(0, 0, 0, 0.8);
2428
font-size: smaller; }
2429
2430
:not(decoration):not(window):drop(active) {
2431
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
2432
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;
2433
caret-color: #FF4081; }
2434
2435
stackswitcher button.text-button {
2436
min-width: 100px; }
2437
2438
stackswitcher button.circular,
2439
stackswitcher button.text-button.circular {
2440
min-width: 36px;
2441
min-height: 36px;
2442
padding: 0; }
2443
2444
/************
2445
* Nautilus *
2446
************/
2447
.nautilus-window,
2448
.nautilus-window notebook,
2449
.nautilus-window notebook > stack {
2450
background-color: #FFFFFF; }
2451
2452
.nautilus-window paned > separator {
2453
background-color: #F5F5F5; }
2454
2455
.nautilus-desktop.nautilus-canvas-item, .caja-desktop.caja-canvas-item {
2456
color: #FFFFFF;
2457
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
2458
2459
.nautilus-desktop.nautilus-canvas-item:selected, .caja-desktop.caja-canvas-item:selected {
2460
text-shadow: none; }
2461
2462
@keyframes needs_attention_keyframes {
2463
from {
2464
background-color: transparent; }
2465
to {
2466
background-color: alpha(currentColor, 0.3); } }
2467
.nautilus-operations-button-needs-attention {
2468
color: #FF4081;
2469
animation: needs_attention_keyframes 0.3s cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; }
2470
2471
.nautilus-operations-button-needs-attention-multiple {
2472
color: #FF4081;
2473
animation: needs_attention_keyframes 0.3s cubic-bezier(0.4, 0, 0.2, 1) 4 alternate; }
2474
2475
.nautilus-window .floating-bar {
2476
min-height: 32px;
2477
padding: 0;
2478
border-style: solid solid none;
2479
border-width: 1px;
2480
border-color: rgba(0, 0, 0, 0.1);
2481
border-radius: 3px 3px 0 0;
2482
background-color: #FFFFFF;
2483
background-clip: padding-box;
2484
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), border-width 0; }
2485
.nautilus-window .floating-bar.bottom.left {
2486
margin-right: 7px;
2487
border-left-style: none;
2488
border-top-left-radius: 0; }
2489
.nautilus-window .floating-bar.bottom.right {
2490
margin-left: 7px;
2491
border-right-style: none;
2492
border-top-right-radius: 0; }
2493
.nautilus-window .floating-bar button {
2494
margin: 4px; }
2495
2496
.disk-space-display.unknown {
2497
background-color: #FF6D00; }
2498
2499
.disk-space-display.used {
2500
background-color: #42A5F5; }
2501
2502
.disk-space-display.free {
2503
background-color: alpha(currentColor, 0.3);
2504
color: rgba(0, 0, 0, 0.32); }
2505
2506
.documents-entry-tag, .photos-entry-tag {
2507
margin: 3px -2px 3px 8px;
2508
padding: 0 8px;
2509
border-radius: 9999px;
2510
box-shadow: none;
2511
background-color: #42A5F5;
2512
color: #FFFFFF; }
2513
.documents-entry-tag:hover, .photos-entry-tag:hover {
2514
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
2515
2516
.documents-entry-tag.button, .button.photos-entry-tag {
2517
margin: 0 -2px;
2518
padding: 4px;
2519
border-radius: 9999px;
2520
box-shadow: none;
2521
color: rgba(255, 255, 255, 0.75); }
2522
.documents-entry-tag.button:hover, .button.photos-entry-tag:hover, .documents-entry-tag.button:active, .button.photos-entry-tag:active {
2523
color: #FFFFFF; }
2524
2525
.nautilus-window searchbar {
2526
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2527
2528
.nautilus-window .searchbar-container {
2529
margin-top: -1px; }
2530
2531
/*********
2532
* gedit *
2533
*********/
2534
.open-document-selector-name-label {
2535
font-weight: bold; }
2536
2537
.open-document-selector-path-label {
2538
color: alpha(currentColor, 0.6);
2539
font-size: smaller; }
2540
2541
.gedit-document-panel {
2542
background-color: #FAFAFA; }
2543
2544
.gedit-document-panel-group-row {
2545
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2546
2547
.gedit-document-panel-group-row:first-child {
2548
border-top: none; }
2549
2550
.gedit-document-panel row button.flat {
2551
margin-top: 8px;
2552
margin-bottom: 8px; }
2553
2554
.gedit-side-panel-paned statusbar {
2555
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2556
2557
.gedit-search-slider {
2558
margin: 4px 4px 8px; }
2559
.gedit-search-slider entry:dir(ltr), .gedit-search-slider entry:dir(rtl) {
2560
border-radius: 2px; }
2561
.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag, .gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag {
2562
all: unset;
2563
color: alpha(currentColor, 0.6); }
2564
.gedit-search-slider entry:dir(ltr) {
2565
margin-right: -66px;
2566
padding-right: 66px; }
2567
.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag {
2568
margin-left: 6px; }
2569
.gedit-search-slider entry:dir(ltr) image.right {
2570
margin-right: 0; }
2571
.gedit-search-slider entry:dir(rtl) {
2572
margin-left: -66px;
2573
padding-left: 66px; }
2574
.gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag {
2575
margin-right: 6px; }
2576
.gedit-search-slider entry:dir(rtl) image.left {
2577
margin-left: 0; }
2578
.gedit-search-slider entry.error ~ button {
2579
color: rgba(255, 255, 255, 0.75); }
2580
.gedit-search-slider entry.error ~ button:hover, .gedit-search-slider entry.error ~ button:active {
2581
color: #FFFFFF; }
2582
.gedit-search-slider entry.error ~ button:disabled {
2583
color: rgba(255, 255, 255, 0.3); }
2584
.gedit-search-slider button {
2585
border: solid 6px transparent; }
2586
.gedit-search-slider button:last-child:dir(ltr), .gedit-search-slider button:not(:first-child):dir(rtl) {
2587
margin-left: -3px; }
2588
.gedit-search-slider button:first-child:dir(rtl), .gedit-search-slider button:not(:last-child):dir(ltr) {
2589
margin-right: -3px; }
2590
2591
frame.gedit-map-frame > border:dir(ltr) {
2592
border-style: none none none solid; }
2593
frame.gedit-map-frame > border:dir(rtl) {
2594
border-style: none solid none none; }
2595
2596
/**************
2597
* Tweak Tool *
2598
**************/
2599
.tweak-categories {
2600
background-image: image(#FAFAFA); }
2601
.tweak-categories separator {
2602
min-width: 0;
2603
min-height: 0;
2604
background: transparent; }
2605
2606
.tweak {
2607
padding: 3px; }
2608
.tweak.title:hover {
2609
box-shadow: none; }
2610
2611
.tweak-group-white,
2612
.tweak-white,
2613
.tweak-white:hover {
2614
background-image: image(#FFFFFF); }
2615
2616
.tweak-startup,
2617
.tweak-startup:hover {
2618
background-image: image(#FFFFFF); }
2619
2620
.tweak-group-startup {
2621
background-image: image(#FFFFFF);
2622
border: 1px solid rgba(0, 0, 0, 0.1); }
2623
2624
/***********
2625
* Builder *
2626
***********/
2627
workbench stack.titlebar {
2628
padding: 0; }
2629
2630
workbench:not(.tiled):not(.maximized):not(.fullscreen) stack.titlebar headerbar {
2631
border-radius: 2px 2px 0 0; }
2632
2633
perspectiveswitcher {
2634
background-color: #F5F5F5; }
2635
2636
perspectiveswitcher button:checked {
2637
color: #42A5F5; }
2638
2639
layouttabbar {
2640
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2641
background-color: #F5F5F5; }
2642
2643
layouttabbar > box > button {
2644
margin: 2px 0; }
2645
2646
layouttab {
2647
margin: 0 8px;
2648
border-style: none solid;
2649
border-width: 1px;
2650
border-color: rgba(0, 0, 0, 0.1);
2651
box-shadow: inset 0 -2px #42A5F5;
2652
background-color: #FFFFFF; }
2653
2654
layouttab separator.vertical {
2655
margin: 8px 4px; }
2656
2657
layouttab button.text-button, layouttab button.image-button, layouttab button {
2658
margin-top: 8px;
2659
margin-bottom: 8px;
2660
padding: 0 4px; }
2661
2662
layouttab > box > button.close {
2663
border-radius: 9999px; }
2664
2665
layout {
2666
border: 1px solid rgba(0, 0, 0, 0.1);
2667
-PnlDockBin-handle-size: 1; }
2668
2669
entry.search-missing {
2670
background-color: #DD2C00;
2671
color: #FFFFFF; }
2672
2673
workbench treeview.image {
2674
color: alpha(currentColor, 0.6); }
2675
2676
workbench treeview.image:selected {
2677
color: rgba(255, 255, 255, 0.6); }
2678
2679
dockbin {
2680
border: 1px solid rgba(0, 0, 0, 0.1);
2681
-PnlDockBin-handle-size: 1; }
2682
2683
dockpaned {
2684
border: 1px solid rgba(0, 0, 0, 0.1); }
2685
2686
eggsearchbar box.search-bar {
2687
padding: 0 8px;
2688
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2689
background-color: #F5F5F5; }
2690
2691
docktabstrip {
2692
padding: 0 8px;
2693
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2694
background-color: #F5F5F5; }
2695
2696
docktab {
2697
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
2698
min-height: 24px;
2699
min-width: 24px;
2700
margin-bottom: -1px;
2701
padding: 6px 6px;
2702
outline-offset: -6px;
2703
border-width: 1px;
2704
border-color: transparent;
2705
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 10%, transparent 0%);
2706
background-repeat: no-repeat;
2707
background-position: center;
2708
background-size: 0% 0%;
2709
color: rgba(0, 0, 0, 0.6);
2710
font-weight: 500; }
2711
docktab:hover {
2712
box-shadow: inset 0 -2px alpha(currentColor, 0.3);
2713
color: rgba(0, 0, 0, 0.8); }
2714
docktab:checked {
2715
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);
2716
box-shadow: inset 0 -2px #42A5F5;
2717
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
2718
background-size: 1000% 1000%;
2719
color: rgba(0, 0, 0, 0.8); }
2720
2721
dockoverlayedge {
2722
background-color: #F5F5F5; }
2723
2724
dockoverlayedge docktabstrip {
2725
padding: 0;
2726
border: none; }
2727
2728
dockoverlayedge.left-edge docktab:hover {
2729
box-shadow: inset -2px 0 alpha(currentColor, 0.3); }
2730
dockoverlayedge.left-edge docktab:checked {
2731
box-shadow: inset -2px 0 #42A5F5; }
2732
2733
dockoverlayedge.right-edge docktab:hover {
2734
box-shadow: inset 2px 0 alpha(currentColor, 0.3); }
2735
dockoverlayedge.right-edge docktab:checked {
2736
box-shadow: inset 2px 0 #42A5F5; }
2737
2738
pillbox {
2739
background-color: #F5F5F5;
2740
border-radius: 2px; }
2741
2742
buildperspective row {
2743
padding: 10px; }
2744
2745
layoutpane entry.search {
2746
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
2747
background-color: #FFFFFF; }
2748
2749
editortweak entry.search {
2750
margin-bottom: -1px;
2751
box-shadow: none; }
2752
2753
frame.gb-search-frame {
2754
border-bottom-right-radius: 5px; }
2755
2756
.gb-search-entry-occurrences-tag {
2757
box-shadow: none;
2758
background-color: transparent; }
2759
2760
docktabstrip {
2761
min-height: 39px; }
2762
2763
workbench preferences preferencesgroup list entry {
2764
padding-top: 8px;
2765
padding-bottom: 8px; }
2766
2767
/**********
2768
* Photos *
2769
**********/
2770
GdMainIconView.content-view {
2771
-GdMainIconView-icon-size: 48; }
2772
2773
.documents-counter {
2774
margin: 8px;
2775
border-radius: 9999px;
2776
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
2777
background-color: #FF4081;
2778
color: #FFFFFF;
2779
font-weight: bold; }
2780
2781
.documents-scrolledwin.frame {
2782
border-style: none; }
2783
2784
.photos-fade-in {
2785
opacity: 1;
2786
transition: opacity 0.2s cubic-bezier(0, 0, 0.2, 1); }
2787
2788
.photos-fade-out {
2789
opacity: 0;
2790
transition: opacity 0.2s cubic-bezier(0, 0, 0.2, 1); }
2791
2792
overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) {
2793
border-style: none none none solid; }
2794
overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) {
2795
border-style: none solid none none; }
2796
2797
/*********
2798
* Music *
2799
*********/
2800
.side-panel:dir(ltr) {
2801
border-style: solid;
2802
border-color: rgba(0, 0, 0, 0.1); }
2803
2804
.side-panel:dir(rtl) {
2805
border-style: solid;
2806
border-color: rgba(0, 0, 0, 0.1); }
2807
2808
.side-panel .view, .side-panel iconview {
2809
background-image: image(#FAFAFA); }
2810
.side-panel .view:hover, .side-panel iconview:hover {
2811
background-image: image(rgba(242, 242, 242, 0.99)); }
2812
2813
.side-panel .view:selected, .side-panel iconview:selected {
2814
background-image: image(#42A5F5); }
2815
.side-panel .view:selected:hover, .side-panel iconview:selected:hover {
2816
background-image: image(#4baaf6); }
2817
2818
.songs-list:hover {
2819
background-image: image(alpha(currentColor, 0.05)); }
2820
2821
frame.documents-dropdown {
2822
margin: 8px; }
2823
frame.documents-dropdown > border {
2824
border: none; }
2825
2826
box.vertical:not(.titlebar) > revealer > toolbar.search-bar {
2827
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
2828
box.vertical:not(.titlebar) > revealer > toolbar.search-bar button > widget {
2829
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
2830
2831
/*********
2832
* To Do *
2833
*********/
2834
task-row {
2835
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
2836
margin: 0 -4px; }
2837
task-row:hover {
2838
transition: none; }
2839
task-row label {
2840
margin: 0 8px; }
2841
task-row image {
2842
margin: 0 4px; }
2843
2844
task-list-view > box > revealer > box > button {
2845
min-height: 36px;
2846
margin: -4px;
2847
padding: 0 12px; }
2848
task-list-view > box > revealer > box > button label {
2849
margin: 0 8px; }
2850
task-list-view > box > revealer > box > button image {
2851
margin: 0 4px; }
2852
2853
/*******
2854
* eog *
2855
*******/
2856
#eog-thumb-nav scrolledwindow {
2857
border-top: none; }
2858
#eog-thumb-nav button {
2859
-gtk-outline-radius: 2px; }
2860
2861
/*************
2862
* Evolution *
2863
*************/
2864
frame.taskbar > border {
2865
border-style: solid none none; }
2866
2867
box.vertical > paned.horizontal notebook widget .frame {
2868
border-style: none; }
2869
2870
/********
2871
* gitg *
2872
********/
2873
frame.commit-frame > border {
2874
border-style: solid none none; }
2875
2876
/**************
2877
* Characters *
2878
**************/
2879
box.dialog-vbox scrolledwindow.related {
2880
border: 1px solid rgba(0, 0, 0, 0.1); }
2881
2882
list.categories {
2883
background-image: image(#FAFAFA); }
2884
2885
/**************
2886
* Calculator *
2887
**************/
2888
button.title label {
2889
min-height: 36px; }
2890
2891
/************
2892
* Terminix *
2893
************/
2894
.terminix-background box.vertical > widget > box.horizontal {
2895
padding: 3px 0 2px; }
2896
.terminix-background box.vertical > widget > box.horizontal button {
2897
padding: 4px 8px; }
2898
.terminix-background box.vertical > widget > box.horizontal button.image-button {
2899
padding: 4px; }
2900
2901
.terminix-background revealer > frame > border {
2902
border-style: none; }
2903
2904
button.image-button.session-new-button {
2905
min-width: 32px; }
2906
2907
overlay > revealer.left > scrolledwindow.frame,
2908
overlay > revealer.right > scrolledwindow.frame {
2909
border-style: none;
2910
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); }
2911
2912
overlay > revealer.left > scrolledwindow.frame {
2913
margin-right: 32px; }
2914
2915
overlay > revealer.right > scrolledwindow.frame {
2916
margin-left: 32px; }
2917
2918
.terminix-session-sidebar {
2919
background-image: image(#FAFAFA); }
2920
2921
/***********
2922
* Eclipse *
2923
***********/
2924
window.background > box.vertical > scrolledwindow > widget toolbar {
2925
padding: 2px; }
2926
window.background > box.vertical > scrolledwindow > widget toolbar separator,
2927
window.background > box.vertical > scrolledwindow > widget toolbar button {
2928
margin: 2px; }
2929
window.background > box.vertical > scrolledwindow > widget toolbar button {
2930
border-radius: 2px; }
2931
2932
/***********
2933
* Firefox *
2934
***********/
2935
window.background > widget > menubar {
2936
color: rgba(0, 0, 0, 0.6); }
2937
window.background > widget > menubar:hover {
2938
color: rgba(0, 0, 0, 0.8); }
2939
window.background > widget > menubar:disabled {
2940
color: rgba(0, 0, 0, 0.24); }
2941
2942
window.background > menu > menuitem > label:disabled {
2943
color: rgba(0, 0, 0, 0.32); }
2944
2945
window.background > window.background > menu > separator {
2946
color: rgba(0, 0, 0, 0.1); }
2947
2948
window.background > widget > separator,
2949
window.background > widget > frame {
2950
color: rgba(0, 0, 0, 0.2); }
2951
2952
window.background > widget > checkbutton > check,
2953
window.background > widget > radiobutton > radio {
2954
margin: 0;
2955
padding: 0; }
2956
2957
window.background > window.background > menu > menuitem > radio:checked,
2958
window.background > widget > radiobutton > radio:checked {
2959
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic.png")));
2960
border-image: none; }
2961
2962
/***********
2963
* Synapse *
2964
***********/
2965
box.vertical > widget > widget:selected {
2966
background-color: #42A5F5; }
2967
2968
/*********
2969
* Unity *
2970
*********/
2971
UnityDecoration {
2972
-UnityDecoration-extents: 28px 0 0 0;
2973
-UnityDecoration-input-extents: 8px;
2974
-UnityDecoration-shadow-offset-x: 0;
2975
-UnityDecoration-shadow-offset-y: 3px;
2976
-UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48);
2977
-UnityDecoration-active-shadow-radius: 18px;
2978
-UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32);
2979
-UnityDecoration-inactive-shadow-radius: 6px;
2980
-UnityDecoration-glow-size: 8px;
2981
-UnityDecoration-glow-color: #42A5F5;
2982
-UnityDecoration-title-indent: 4px;
2983
-UnityDecoration-title-fade: 32px;
2984
-UnityDecoration-title-alignment: 0.0; }
2985
2986
UnityDecoration .top {
2987
padding: 0 2px;
2988
border-style: none;
2989
border-radius: 2px 2px 0 0;
2990
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
2991
background-color: #BDBDBD;
2992
color: rgba(0, 0, 0, 0.8); }
2993
2994
UnityDecoration .top:backdrop {
2995
color: rgba(0, 0, 0, 0.6); }
2996
2997
UnityDecoration .menuitem {
2998
color: alpha(currentColor, 0.75); }
2999
3000
UnityDecoration .menuitem:hover {
3001
box-shadow: inset 0 -2px currentColor;
3002
background-color: transparent;
3003
color: currentColor; }
3004
3005
.background:not(.csd) headerbar:not(.titlebar) {
3006
border-radius: 0;
3007
box-shadow: none; }
3008
.background:not(.csd) headerbar:not(.titlebar).inline-toolbar {
3009
border-style: none; }
3010
3011
UnityPanelWidget,
3012
.unity-panel {
3013
background-color: #BDBDBD;
3014
background-image: image(#BDBDBD);
3015
color: rgba(0, 0, 0, 0.8); }
3016
3017
UnityPanelWidget:backdrop,
3018
.unity-panel:backdrop {
3019
color: rgba(0, 0, 0, 0.6); }
3020
3021
.unity-panel.menuitem,
3022
.unity-panel .menuitem {
3023
color: alpha(currentColor, 0.75); }
3024
3025
.unity-panel.menubar.menuitem:hover,
3026
.unity-panel.menubar .menuitem *:hover {
3027
box-shadow: inset 0 -2px currentColor;
3028
background-color: transparent;
3029
color: currentColor; }
3030
3031
@keyframes playbackmenuitem_spinner {
3032
to {
3033
-gtk-icon-transform: rotate(1turn); } }
3034
.menu IdoPlaybackMenuItem.menuitem:active {
3035
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
3036
animation: playbackmenuitem_spinner 1s infinite linear;
3037
color: #42A5F5; }
3038
3039
/**************
3040
* Mate-Panel *
3041
**************/
3042
.mate-panel-menu-bar menubar,
3043
#PanelApplet-window-menu-applet-button {
3044
background-color: transparent; }
3045
3046
#PanelPlug,
3047
PanelToplevel.background {
3048
background-color: #BDBDBD;
3049
color: rgba(0, 0, 0, 0.8);
3050
font-weight: 500; }
3051
3052
PanelToplevel > widget > button {
3053
padding: 0 4px;
3054
border-radius: 0; }
3055
3056
PanelSeparator {
3057
color: rgba(0, 0, 0, 0.1); }
3058
3059
MatePanelAppletFrameDBus {
3060
border-style: solid;
3061
border-width: 0 1px;
3062
border-color: rgba(0, 0, 0, 0.1); }
3063
3064
.mate-panel-menu-bar menubar menuitem {
3065
padding: 4px; }
3066
3067
.mate-panel-menu-bar menubar menu menuitem {
3068
padding: 6px; }
3069
3070
.mate-panel-menu-bar #PanelApplet button {
3071
-GtkWidget-window-dragging: true;
3072
padding: 4px;
3073
border-radius: 0; }
3074
3075
PanelApplet.wnck-applet .wnck-pager {
3076
background-color: transparent;
3077
color: #40C4FF; }
3078
PanelApplet.wnck-applet .wnck-pager:hover {
3079
background-color: alpha(currentColor, 0.15); }
3080
PanelApplet.wnck-applet .wnck-pager:active {
3081
background-color: alpha(currentColor, 0.3); }
3082
PanelApplet.wnck-applet .wnck-pager:selected {
3083
background-color: #42A5F5; }
3084
3085
#MatePanelPopupWindow {
3086
border: 1px solid rgba(0, 0, 0, 0.1);
3087
border-radius: 3px;
3088
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); }
3089
#MatePanelPopupWindow frame > border {
3090
border-style: none; }
3091
#MatePanelPopupWindow ClockMap {
3092
border: 1px solid rgba(0, 0, 0, 0.1); }
3093
3094
na-tray-applet {
3095
-NaTrayApplet-icon-padding: 3px;
3096
-NaTrayApplet-icon-size: 16; }
3097
3098
.mate-panel-menu-bar {
3099
-PanelMenuBar-icon-visible: true; }
3100
3101
.mate-panel-applet-slider {
3102
background: transparent; }
3103
.mate-panel-applet-slider frame {
3104
border: 1px solid rgba(0, 0, 0, 0.1);
3105
border-radius: 3px;
3106
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
3107
background-color: #F5F5F5; }
3108
.mate-panel-applet-slider frame frame {
3109
all: unset; }
3110
.mate-panel-applet-slider frame > border {
3111
border-style: none; }
3112
3113
/*********************
3114
* CAJA File manager *
3115
*********************/
3116
.caja-navigation-window button.toggle.image-button {
3117
border-radius: 2px; }
3118
3119
.caja-pathbar button {
3120
margin: 0 -1px 0 -2px; }
3121
3122
.caja-pathbar button > widget {
3123
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
3124
-GtkArrow-arrow-scaling: 1; }
3125
3126
.caja-side-pane notebook viewport.frame,
3127
.caja-side-pane notebook widget .vertical {
3128
background-color: #FFFFFF; }
3129
3130
.caja-side-pane notebook .frame,
3131
.caja-notebook .frame {
3132
border-style: none; }
3133
3134
.caja-side-pane notebook,
3135
.caja-notebook {
3136
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3137
3138
.caja-navigation-window statusbar {
3139
margin: 0 -10px;
3140
padding: 0 4px;
3141
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3142
3143
.caja-notebook frame > border {
3144
border-style: none; }
3145
3146
#caja-extra-view-widget {
3147
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3148
background-color: #F5F5F5; }
3149
#caja-extra-view-widget > box > box > label {
3150
font-weight: bold; }
3151
3152
/*********
3153
* Pluma *
3154
*********/
3155
.pluma-window statusbar {
3156
margin: 0 -10px;
3157
padding: 0 4px;
3158
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3159
3160
.pluma-window statusbar frame > border {
3161
border-style: none; }
3162
3163
.pluma-window statusbar frame button.flat {
3164
padding: 0 4px;
3165
border-radius: 0; }
3166
3167
.pluma-window statusbar frame button.flat widget {
3168
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
3169
-GtkArrow-arrow-scaling: 1; }
3170
3171
.pluma-print-preview toolbar {
3172
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
3173
3174
.pluma-window paned.horizontal box.vertical box.horizontal button.flat {
3175
margin: 1px; }
3176
3177
.pluma-window paned.horizontal box.vertical .frame {
3178
border-style: none; }
3179
3180
.pluma-window paned.horizontal box.vertical notebook.frame {
3181
margin-top: -1px;
3182
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3183
3184
.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal {
3185
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
3186
3187
/*********
3188
* Atril *
3189
*********/
3190
.atril-window paned.horizontal box.vertical .frame {
3191
border-style: none; }
3192
3193
.atril-window paned.horizontal box.vertical notebook .frame {
3194
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3195
3196
/* mate-screensaver lock dialog */
3197
.lock-dialog {
3198
border-radius: 2px;
3199
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); }
3200
.lock-dialog frame > border {
3201
border-style: none; }
3202
3203
/************************
3204
* LightDM GTK+ Greeter *
3205
************************/
3206
#panel_window {
3207
background-color: rgba(0, 0, 0, 0.3); }
3208
3209
#panel_window menubar,
3210
#panel_window separator {
3211
background-color: transparent; }
3212
3213
#panel_window menubar > menuitem {
3214
color: rgba(255, 255, 255, 0.75); }
3215
#panel_window menubar > menuitem:hover {
3216
color: #FFFFFF; }
3217
#panel_window menubar > menuitem:disabled {
3218
color: rgba(255, 255, 255, 0.3); }
3219
3220
#login_window,
3221
#shutdown_dialog,
3222
#restart_dialog {
3223
margin: 8px;
3224
border-radius: 2px;
3225
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);
3226
background-color: #FAFAFA; }
3227
3228
#content_frame {
3229
padding-bottom: 20px;
3230
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
3231
3232
#buttonbox_frame {
3233
padding-top: 24px; }
3234
#buttonbox_frame button {
3235
margin: -16px; }
3236
3237
#greeter_infobar {
3238
margin-top: -1px; }
3239
3240
/* GTK NAMED COLORS
3241
----------------
3242
use responsibly! */
3243
/*
3244
widget text/foreground color */
3245
@define-color theme_fg_color rgba(0, 0, 0, 0.8);
3246
/*
3247
text color for entries, views and content in general */
3248
@define-color theme_text_color rgba(0, 0, 0, 0.8);
3249
/*
3250
widget base background color */
3251
@define-color theme_bg_color #F5F5F5;
3252
/*
3253
text widgets and the like base background color */
3254
@define-color theme_base_color #FFFFFF;
3255
/*
3256
base background color of selections */
3257
@define-color theme_selected_bg_color #42A5F5;
3258
/*
3259
text/foreground color of selections */
3260
@define-color theme_selected_fg_color #FFFFFF;
3261
/*
3262
base background color of insensitive widgets */
3263
@define-color insensitive_bg_color #F5F5F5;
3264
/*
3265
text foreground color of insensitive widgets */
3266
@define-color insensitive_fg_color rgba(0, 0, 0, 0.32);
3267
/*
3268
insensitive text widgets and the like base background color */
3269
@define-color insensitive_base_color #FAFAFA;
3270
/*
3271
widget text/foreground color on backdrop windows */
3272
@define-color theme_unfocused_fg_color rgba(0, 0, 0, 0.8);
3273
/*
3274
text color for entries, views and content in general on backdrop windows */
3275
@define-color theme_unfocused_text_color rgba(0, 0, 0, 0.8);
3276
/*
3277
widget base background color on backdrop windows */
3278
@define-color theme_unfocused_bg_color #F5F5F5;
3279
/*
3280
text widgets and the like base background color on backdrop windows */
3281
@define-color theme_unfocused_base_color #FFFFFF;
3282
/*
3283
base background color of selections on backdrop windows */
3284
@define-color theme_unfocused_selected_bg_color #42A5F5;
3285
/*
3286
text/foreground color of selections on backdrop windows */
3287
@define-color theme_unfocused_selected_fg_color #FFFFFF;
3288
/*
3289
insensitive color on backdrop windows */
3290
@define-color unfocused_insensitive_color rgba(0, 0, 0, 0.32);
3291
/*
3292
widgets main borders color */
3293
@define-color borders rgba(0, 0, 0, 0.1);
3294
/*
3295
widgets main borders color on backdrop windows */
3296
@define-color unfocused_borders rgba(0, 0, 0, 0.1);
3297
/*
3298
these are pretty self explicative */
3299
@define-color warning_color #FF6D00;
3300
@define-color error_color #DD2C00;
3301
@define-color success_color #00C853;
3302
/*
3303
FIXME this is really an API */
3304
@define-color content_view_bg #FFFFFF;
3305
@define-color placeholder_text_color rgba(128, 128, 128, 0.88);
3306