gtk-compact.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: 32px;
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: 32px;
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: 4px 8px;
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: 4px;
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: 12px;
440
margin-right: 2px; }
441
button.text-button.image-button label:last-child {
442
margin-left: 2px;
443
margin-right: 12px; }
444
button.text-button.image-button label:only-child {
445
margin-left: 12px;
446
margin-right: 12px; }
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: 10px 14px; }
476
button.osd.image-button {
477
padding: 10px; }
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: 2px;
536
padding-right: 2px; }
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: 20px;
559
min-width: 20px;
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: 20px;
662
min-width: 20px;
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: 28px;
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: 32px;
717
min-width: 44px;
718
padding: 0; }
719
spinbutton.vertical button {
720
min-height: 32px;
721
min-width: 44px;
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: 0px; }
746
combobox button.combo cellview:dir(rtl) {
747
margin-right: 0px; }
748
combobox #gtk-combobox-popup-menu {
749
padding: 2px 0; }
750
combobox #gtk-combobox-popup-menu menuitem {
751
min-height: 28px;
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: 44px;
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.2);
836
background-color: #455A64;
837
color: #FFFFFF; }
838
.titlebar:disabled:not(headerbar) :not(button) > label,
839
headerbar:disabled :not(button) > label {
840
color: rgba(255, 255, 255, 0.4); }
841
.titlebar:backdrop:not(headerbar),
842
headerbar:backdrop {
843
color: rgba(255, 255, 255, 0.75); }
844
.titlebar:backdrop:disabled:not(headerbar) :not(button) > label,
845
headerbar:backdrop:disabled :not(button) > label {
846
color: rgba(255, 255, 255, 0.3); }
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), currentColor 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), currentColor 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: 20px;
914
padding: 6px;
915
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); }
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: 20px;
924
min-width: 20px;
925
margin: 0;
926
padding: 0; }
927
.solid-csd .titlebar:dir(rtl):not(headerbar), .solid-csd .titlebar:dir(ltr):not(headerbar), .solid-csd
928
headerbar:dir(rtl), .solid-csd
929
headerbar:dir(ltr) {
930
margin-left: -2px;
931
margin-right: -2px;
932
margin-top: -2px;
933
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); }
934
935
headerbar entry,
936
headerbar spinbutton,
937
headerbar button {
938
margin-top: 6px;
939
margin-bottom: 6px; }
940
headerbar switch {
941
margin-top: 12px;
942
margin-bottom: 12px; }
943
944
.background:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) .titlebar {
945
border-top-left-radius: 2px;
946
border-top-right-radius: 2px; }
947
948
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 {
949
border-top-left-radius: 2px; }
950
window:not(.tiled):not(.maximized):not(.fullscreen):not(.solid-csd) headerbar:last-child {
951
border-top-right-radius: 2px; }
952
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 {
953
border-top-left-radius: 2px;
954
border-top-right-radius: 2px; }
955
956
window.csd > .titlebar:not(headerbar) {
957
padding: 0;
958
background-color: transparent;
959
background-image: none;
960
border-style: none;
961
box-shadow: none; }
962
.titlebar:not(headerbar) > separator {
963
background-color: #455A64;
964
background-image: image(rgba(0, 0, 0, 0.1)); }
965
966
/************
967
* Pathbars *
968
************/
969
.caja-pathbar button,
970
.path-bar button {
971
padding-left: 4px;
972
padding-right: 4px; }
973
.caja-pathbar button label:not(:only-child):first-child,
974
.path-bar button label:not(:only-child):first-child {
975
margin-left: 4px; }
976
.caja-pathbar button label:not(:only-child):last-child,
977
.path-bar button label:not(:only-child):last-child {
978
margin-right: 4px; }
979
.caja-pathbar button.slider-button,
980
.path-bar button.slider-button {
981
padding-left: 4px;
982
padding-right: 4px; }
983
:not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar)
984
.path-bar button {
985
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 0%, transparent 0%) 0 0 0/0 0 0px;
986
border-radius: 2px; }
987
:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar)
988
.path-bar button:checked {
989
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #42A5F5 100%, transparent 0%) 0 0 2/0 0 2px; }
990
: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)
991
.path-bar button:checked, :not(headerbar)
992
.path-bar button:checked:disabled {
993
background-color: transparent; }
994
995
/**************
996
* Tree Views *
997
**************/
998
treeview.view {
999
border-left-color: alpha(currentColor, 0.3);
1000
border-top-color: rgba(0, 0, 0, 0.1); }
1001
* {
1002
-GtkTreeView-horizontal-separator: 4;
1003
-GtkTreeView-grid-line-width: 1;
1004
-GtkTreeView-grid-line-pattern: '';
1005
-GtkTreeView-tree-line-width: 1;
1006
-GtkTreeView-tree-line-pattern: '';
1007
-GtkTreeView-expander-size: 16; }
1008
treeview.view:hover, treeview.view:active, treeview.view:selected {
1009
border-radius: 0; }
1010
treeview.view.separator {
1011
min-height: 5px;
1012
color: rgba(0, 0, 0, 0.1); }
1013
treeview.view:drop(active) {
1014
border-style: solid none;
1015
border-width: 1px;
1016
border-color: #FF4081; }
1017
treeview.view:drop(active).after {
1018
border-top-style: none; }
1019
treeview.view:drop(active).before {
1020
border-bottom-style: none; }
1021
treeview.view.expander {
1022
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
1023
-gtk-icon-transform: rotate(-90deg);
1024
color: rgba(0, 0, 0, 0.6); }
1025
treeview.view.expander:dir(rtl) {
1026
-gtk-icon-transform: rotate(90deg); }
1027
treeview.view.expander:checked {
1028
-gtk-icon-transform: unset; }
1029
treeview.view.expander:hover, treeview.view.expander:active {
1030
color: rgba(0, 0, 0, 0.8); }
1031
treeview.view.expander:disabled {
1032
color: rgba(0, 0, 0, 0.24); }
1033
treeview.view.expander:selected {
1034
color: rgba(255, 255, 255, 0.75); }
1035
treeview.view.expander:selected:hover, treeview.view.expander:selected:active {
1036
color: #FFFFFF; }
1037
treeview.view.expander:selected:disabled {
1038
color: rgba(255, 255, 255, 0.3); }
1039
treeview.view.progressbar {
1040
border-style: none none solid;
1041
border-width: 4px;
1042
border-color: #42A5F5;
1043
box-shadow: none;
1044
background-color: transparent; }
1045
treeview.view.progressbar:selected {
1046
border-color: currentColor; }
1047
treeview.view.trough {
1048
border-style: none none solid;
1049
border-width: 4px;
1050
border-color: rgba(66, 165, 245, 0.3);
1051
box-shadow: none;
1052
background-color: transparent; }
1053
treeview.view.trough:selected {
1054
border-color: alpha(currentColor, 0.3); }
1055
treeview.view header button {
1056
padding: 2px 6px;
1057
border-style: none solid solid none;
1058
border-width: 1px;
1059
border-color: rgba(0, 0, 0, 0.1);
1060
border-radius: 0;
1061
background-clip: border-box; }
1062
treeview.view header button, treeview.view header button:hover, treeview.view header button:active {
1063
box-shadow: none; }
1064
treeview.view header button, treeview.view header button:disabled {
1065
background-color: #FFFFFF; }
1066
treeview.view header button:last-child {
1067
border-right-style: none; }
1068
treeview.view button.dnd,
1069
treeview.view header.button.dnd {
1070
padding: 2px 6px;
1071
border-style: none solid solid;
1072
border-width: 1px;
1073
border-color: rgba(0, 0, 0, 0.1);
1074
border-radius: 0;
1075
box-shadow: none;
1076
background-color: #FFFFFF;
1077
background-clip: border-box;
1078
color: #42A5F5; }
1079
treeview.view acceleditor > label {
1080
background-color: #42A5F5; }
1081
1082
/*********
1083
* Menus *
1084
*********/
1085
menubar,
1086
.menubar {
1087
-GtkWidget-window-dragging: true;
1088
padding: 0;
1089
background-color: #455A64; }
1090
menubar > menuitem,
1091
.menubar > menuitem {
1092
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
1093
min-height: 20px;
1094
padding: 4px 8px;
1095
color: rgba(255, 255, 255, 0.75); }
1096
menubar > menuitem:hover,
1097
.menubar > menuitem:hover {
1098
transition: none;
1099
background-color: alpha(currentColor, 0.15);
1100
color: #FFFFFF; }
1101
menubar > menuitem:disabled,
1102
.menubar > menuitem:disabled {
1103
color: rgba(255, 255, 255, 0.3); }
1104
1105
.csd.popup {
1106
border-radius: 2px; }
1107
1108
menu,
1109
.menu,
1110
.context-menu {
1111
margin: 4px 0;
1112
padding: 4px 0;
1113
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
1114
background-color: #FFFFFF;
1115
border: 1px solid rgba(0, 0, 0, 0.1); }
1116
.csd menu, .csd
1117
.menu, .csd
1118
.context-menu {
1119
border: none;
1120
border-radius: 2px; }
1121
menu menuitem,
1122
.menu menuitem,
1123
.context-menu menuitem {
1124
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
1125
min-height: 20px;
1126
min-width: 40px;
1127
padding: 4px 8px;
1128
font: initial;
1129
text-shadow: none; }
1130
menu menuitem:hover,
1131
.menu menuitem:hover,
1132
.context-menu menuitem:hover {
1133
transition: none;
1134
background-color: alpha(currentColor, 0.15); }
1135
menu menuitem:disabled,
1136
.menu menuitem:disabled,
1137
.context-menu menuitem:disabled {
1138
color: rgba(0, 0, 0, 0.32); }
1139
menu menuitem arrow,
1140
.menu menuitem arrow,
1141
.context-menu menuitem arrow {
1142
min-height: 16px;
1143
min-width: 16px; }
1144
menu menuitem arrow:dir(ltr),
1145
.menu menuitem arrow:dir(ltr),
1146
.context-menu menuitem arrow:dir(ltr) {
1147
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
1148
margin-left: 8px; }
1149
menu menuitem arrow:dir(rtl),
1150
.menu menuitem arrow:dir(rtl),
1151
.context-menu menuitem arrow:dir(rtl) {
1152
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
1153
margin-right: 8px; }
1154
menu menuitem label:dir(rtl), menu menuitem label:dir(ltr),
1155
.menu menuitem label:dir(rtl),
1156
.menu menuitem label:dir(ltr),
1157
.context-menu menuitem label:dir(rtl),
1158
.context-menu menuitem label:dir(ltr) {
1159
color: inherit; }
1160
menu > arrow,
1161
.menu > arrow,
1162
.context-menu > arrow {
1163
min-height: 16px;
1164
min-width: 16px;
1165
padding: 4px;
1166
border-radius: 0;
1167
background-color: #FFFFFF;
1168
color: rgba(0, 0, 0, 0.6); }
1169
menu > arrow.top,
1170
.menu > arrow.top,
1171
.context-menu > arrow.top {
1172
margin-top: -4px;
1173
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1174
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
1175
menu > arrow.bottom,
1176
.menu > arrow.bottom,
1177
.context-menu > arrow.bottom {
1178
margin-bottom: -4px;
1179
border-top: 1px solid rgba(0, 0, 0, 0.1);
1180
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
1181
menu > arrow:hover,
1182
.menu > arrow:hover,
1183
.context-menu > arrow:hover {
1184
background-image: image(alpha(currentColor, 0.15));
1185
color: rgba(0, 0, 0, 0.8); }
1186
menu > arrow:disabled,
1187
.menu > arrow:disabled,
1188
.context-menu > arrow:disabled {
1189
border-color: transparent;
1190
background-color: transparent;
1191
color: transparent; }
1192
menu separator,
1193
.menu separator,
1194
.context-menu separator {
1195
margin: 4px 0; }
1196
1197
menuitem accelerator {
1198
color: alpha(currentColor, 0.6); }
1199
menuitem check:dir(ltr),
1200
menuitem radio:dir(ltr) {
1201
margin-right: -8px;
1202
margin-left: -16px; }
1203
menuitem check:dir(rtl),
1204
menuitem radio:dir(rtl) {
1205
margin-right: -16px;
1206
margin-left: -8px; }
1207
1208
/************
1209
* Popovers *
1210
************/
1211
popover.background {
1212
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1213
padding: 2px;
1214
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
1215
background-color: #FAFAFA; }
1216
popover.background:backdrop {
1217
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
1218
popover.background, .csd popover.background {
1219
border-style: solid;
1220
border-width: 1px;
1221
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3);
1222
border-radius: 3px; }
1223
popover.background > stack {
1224
margin: -4px; }
1225
popover.background > toolbar {
1226
margin: -2px; }
1227
popover.background > list,
1228
popover.background > .view,
1229
popover.background > iconview,
1230
popover.background > toolbar {
1231
border-style: none;
1232
box-shadow: none;
1233
background-color: transparent; }
1234
popover.background.menu button,
1235
popover.background button.model {
1236
min-height: 32px;
1237
padding: 0 8px;
1238
border-radius: 2px; }
1239
popover.background separator {
1240
margin: 4px 0; }
1241
popover.background list separator {
1242
margin: 0; }
1243
1244
/*************
1245
* Notebooks *
1246
*************/
1247
notebook > header {
1248
border-width: 1px;
1249
border-color: rgba(0, 0, 0, 0.1);
1250
background-color: #F5F5F5;
1251
background-clip: border-box; }
1252
notebook > header.top {
1253
border-bottom-style: solid; }
1254
notebook > header.top > tabs {
1255
margin-bottom: -1px; }
1256
notebook > header.top > tabs > tab:hover {
1257
box-shadow: inset 0 -2px alpha(currentColor, 0.3); }
1258
notebook > header.top > tabs > tab:checked {
1259
box-shadow: inset 0 -2px #42A5F5; }
1260
notebook > header.bottom {
1261
border-top-style: solid; }
1262
notebook > header.bottom > tabs {
1263
margin-top: -1px; }
1264
notebook > header.bottom > tabs > tab:hover {
1265
box-shadow: inset 0 2px alpha(currentColor, 0.3); }
1266
notebook > header.bottom > tabs > tab:checked {
1267
box-shadow: inset 0 2px #42A5F5; }
1268
notebook > header.left {
1269
border-right-style: solid; }
1270
notebook > header.left > tabs {
1271
margin-right: -1px; }
1272
notebook > header.left > tabs > tab:hover {
1273
box-shadow: inset -2px 0 alpha(currentColor, 0.3); }
1274
notebook > header.left > tabs > tab:checked {
1275
box-shadow: inset -2px 0 #42A5F5; }
1276
notebook > header.right {
1277
border-left-style: solid; }
1278
notebook > header.right > tabs {
1279
margin-left: -1px; }
1280
notebook > header.right > tabs > tab:hover {
1281
box-shadow: inset 2px 0 alpha(currentColor, 0.3); }
1282
notebook > header.right > tabs > tab:checked {
1283
box-shadow: inset 2px 0 #42A5F5; }
1284
notebook > header.top > tabs > arrow {
1285
border-top-style: none; }
1286
notebook > header.bottom > tabs > arrow {
1287
border-bottom-style: none; }
1288
notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
1289
padding-left: 4px;
1290
padding-right: 4px; }
1291
notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
1292
margin-left: -8px;
1293
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
1294
notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
1295
margin-right: -8px;
1296
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
1297
notebook > header.left > tabs > arrow {
1298
border-left-style: none; }
1299
notebook > header.right > tabs > arrow {
1300
border-right-style: none; }
1301
notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
1302
padding-top: 4px;
1303
padding-bottom: 4px; }
1304
notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
1305
margin-top: -8px;
1306
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
1307
notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
1308
margin-bottom: -8px;
1309
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
1310
notebook > header > tabs > arrow {
1311
min-height: 16px;
1312
min-width: 16px;
1313
border-radius: 0; }
1314
notebook > header tab {
1315
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
1316
min-height: 20px;
1317
min-width: 20px;
1318
padding: 6px 12px;
1319
outline-offset: -6px;
1320
border-width: 1px;
1321
border-color: transparent;
1322
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 10%, transparent 0%);
1323
background-repeat: no-repeat;
1324
background-position: center;
1325
background-size: 0% 0%;
1326
color: rgba(0, 0, 0, 0.6);
1327
font-weight: 500; }
1328
notebook > header tab:hover {
1329
color: rgba(0, 0, 0, 0.8); }
1330
notebook > header tab:hover.reorderable-page {
1331
border-color: rgba(0, 0, 0, 0.1);
1332
background-color: #FAFAFA; }
1333
notebook > header tab:disabled {
1334
color: rgba(0, 0, 0, 0.24); }
1335
notebook > header tab:checked {
1336
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);
1337
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
1338
background-size: 1000% 1000%;
1339
color: rgba(0, 0, 0, 0.8); }
1340
notebook > header tab:checked:disabled {
1341
color: rgba(0, 0, 0, 0.32); }
1342
notebook > header tab:checked.reorderable-page {
1343
border-color: rgba(0, 0, 0, 0.1);
1344
background-color: #FFFFFF; }
1345
notebook > header tab button.flat:last-child {
1346
margin-left: 6px;
1347
margin-right: -6px; }
1348
notebook > header tab button.flat:first-child {
1349
margin-left: -6px;
1350
margin-right: 6px; }
1351
notebook > header.top tabs, notebook > header.bottom tabs {
1352
padding-left: 8px;
1353
padding-right: 8px; }
1354
notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child {
1355
margin-left: 0; }
1356
notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child {
1357
margin-right: 0; }
1358
notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page {
1359
margin: 0 -1px;
1360
border-style: none solid; }
1361
notebook > header.left tabs, notebook > header.right tabs {
1362
padding-top: 8px;
1363
padding-bottom: 8px; }
1364
notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child {
1365
margin-top: 0; }
1366
notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child {
1367
margin-bottom: 0; }
1368
notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page {
1369
margin: -1px 0;
1370
border-style: solid none; }
1371
notebook > stack:not(:only-child) {
1372
background-color: #FFFFFF; }
1373
1374
/**************
1375
* Scrollbars *
1376
**************/
1377
scrollbar {
1378
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
1379
background-color: #FFFFFF;
1380
background-clip: padding-box; }
1381
* {
1382
-GtkScrollbar-has-backward-stepper: false;
1383
-GtkScrollbar-has-forward-stepper: false; }
1384
scrollbar.top {
1385
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
1386
scrollbar.bottom {
1387
border-top: 1px solid rgba(0, 0, 0, 0.1); }
1388
scrollbar.left {
1389
border-right: 1px solid rgba(0, 0, 0, 0.1); }
1390
scrollbar.right {
1391
border-left: 1px solid rgba(0, 0, 0, 0.1); }
1392
scrollbar slider {
1393
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0;
1394
min-width: 8px;
1395
min-height: 8px;
1396
border: 4px solid transparent;
1397
border-radius: 9999px;
1398
background-clip: padding-box;
1399
background-color: rgba(0, 0, 0, 0.48); }
1400
scrollbar slider:hover {
1401
background-color: rgba(0, 0, 0, 0.6); }
1402
scrollbar slider:active {
1403
background-color: rgba(0, 0, 0, 0.8); }
1404
scrollbar slider:disabled {
1405
background-color: rgba(0, 0, 0, 0.192); }
1406
scrollbar.fine-tune slider {
1407
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0;
1408
min-width: 4px;
1409
min-height: 4px; }
1410
scrollbar.fine-tune.horizontal slider {
1411
margin: 2px 0; }
1412
scrollbar.fine-tune.vertical slider {
1413
margin: 0 2px; }
1414
scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
1415
border-color: transparent;
1416
background-color: transparent; }
1417
scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
1418
min-width: 4px;
1419
min-height: 4px;
1420
margin: 3px;
1421
border: 1px solid rgba(255, 255, 255, 0.3); }
1422
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
1423
min-width: 4px;
1424
min-height: 4px;
1425
margin: 3px;
1426
border: 1px solid rgba(255, 255, 255, 0.3);
1427
border-radius: 9999px;
1428
background-color: rgba(0, 0, 0, 0.48);
1429
background-clip: padding-box;
1430
-gtk-icon-source: none; }
1431
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled {
1432
background-color: rgba(0, 0, 0, 0.192); }
1433
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider {
1434
min-width: 24px; }
1435
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button {
1436
min-width: 8px; }
1437
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider {
1438
min-height: 24px; }
1439
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button {
1440
min-height: 8px; }
1441
scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
1442
background-color: rgba(255, 255, 255, 0.9); }
1443
scrollbar.horizontal slider {
1444
min-width: 24px; }
1445
scrollbar.vertical slider {
1446
min-height: 24px; }
1447
scrollbar button {
1448
min-width: 16px;
1449
min-height: 16px;
1450
padding: 0;
1451
border-radius: 0; }
1452
scrollbar.vertical button.down {
1453
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
1454
scrollbar.vertical button.up {
1455
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
1456
scrollbar.horizontal button.down {
1457
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
1458
scrollbar.horizontal button.up {
1459
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
1460
1461
/**********
1462
* Switch *
1463
**********/
1464
switch {
1465
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
1466
margin: 6px 0;
1467
border: 4px solid transparent;
1468
border-radius: 9999px;
1469
background-color: alpha(currentColor, 0.3);
1470
background-clip: padding-box;
1471
font-size: 0; }
1472
switch:disabled {
1473
color: alpha(currentColor, 0.4); }
1474
switch:checked {
1475
background-color: rgba(255, 64, 129, 0.5); }
1476
switch:checked:disabled {
1477
background-color: rgba(255, 64, 129, 0.2);
1478
color: rgba(0, 0, 0, 0.32); }
1479
switch slider {
1480
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1481
border-image: none;
1482
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1483
background-color: #FFFFFF;
1484
color: rgba(0, 0, 0, 0.8);
1485
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1), margin 0;
1486
min-width: 20px;
1487
min-height: 20px;
1488
margin: -4px 0 -4px -4px;
1489
border-radius: 9999px;
1490
-gtk-outline-radius: 9999px; }
1491
switch:hover slider {
1492
border-image: none;
1493
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
1494
switch:checked slider {
1495
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;
1496
animation: needs_attention 0.3s cubic-bezier(0, 0, 0.2, 1);
1497
margin: -4px -4px -4px 0;
1498
background-color: #FF4081;
1499
color: #FFFFFF; }
1500
switch:disabled slider {
1501
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1502
background-color: #FAFAFA;
1503
color: rgba(0, 0, 0, 0.32); }
1504
switch:checked:disabled slider {
1505
animation: none; }
1506
1507
/*************************
1508
* Check and Radio items *
1509
*************************/
1510
.view.content-view.check:not(list), iconview.content-view.check:not(list) {
1511
margin: 8px;
1512
box-shadow: none;
1513
background-color: transparent;
1514
background-image: none;
1515
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png"));
1516
-gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
1517
.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 {
1518
-gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
1519
1520
.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) {
1521
margin: 8px;
1522
box-shadow: none;
1523
background-color: transparent;
1524
background-image: none;
1525
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png"));
1526
-gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
1527
.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 {
1528
-gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
1529
1530
checkbutton.text-button,
1531
radiobutton.text-button {
1532
padding: 2px;
1533
outline-offset: 0; }
1534
checkbutton.text-button label:not(:only-child),
1535
radiobutton.text-button label:not(:only-child) {
1536
margin: 0 4px; }
1537
1538
check,
1539
radio {
1540
min-height: 24px;
1541
min-width: 24px;
1542
margin: -10px;
1543
padding: 10px; }
1544
check:checked, check:indeterminate,
1545
radio:checked,
1546
radio:indeterminate {
1547
color: #FF4081; }
1548
check:checked:disabled, check:indeterminate:disabled,
1549
radio:checked:disabled,
1550
radio:indeterminate:disabled {
1551
color: rgba(255, 64, 129, 0.4); }
1552
row check:not(:checked):not(:indeterminate), row
1553
radio:not(:checked):not(:indeterminate) {
1554
color: alpha(currentColor, 0.75); }
1555
row check:not(:checked):not(:indeterminate):hover, row check:not(:checked):not(:indeterminate):active, row
1556
radio:not(:checked):not(:indeterminate):hover, row
1557
radio:not(:checked):not(:indeterminate):active {
1558
color: currentColor; }
1559
row check:not(:checked):not(:indeterminate):disabled, row
1560
radio:not(:checked):not(:indeterminate):disabled {
1561
color: alpha(currentColor, 0.3); }
1562
menu menuitem check, menu menuitem
1563
radio {
1564
transition: none;
1565
margin: -16px; }
1566
menu menuitem check:not(:checked):not(:indeterminate), menu menuitem
1567
radio:not(:checked):not(:indeterminate) {
1568
color: alpha(currentColor, 0.6); }
1569
menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem
1570
radio, menu menuitem
1571
radio:hover, menu menuitem
1572
radio:disabled {
1573
box-shadow: none; }
1574
1575
check {
1576
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.png"))); }
1577
check:checked {
1578
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.png"))); }
1579
check:indeterminate {
1580
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.png"))); }
1581
1582
radio {
1583
border-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)) 22/22px; }
1584
radio {
1585
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.png"))); }
1586
radio:indeterminate {
1587
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.png"))); }
1588
radio:checked {
1589
border-image: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(#FF4081), to(transparent)) 22/22px; }
1590
radio:checked:disabled {
1591
border-image: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(rgba(255, 64, 129, 0.4)), to(transparent)) 22/22px; }
1592
radio:indeterminate:checked {
1593
border-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)) 22/22px; }
1594
1595
@keyframes check_check {
1596
from {
1597
-gtk-icon-transform: rotate(90deg); }
1598
to {
1599
-gtk-icon-transform: unset; } }
1600
@keyframes check_radio {
1601
from {
1602
border-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)) 22/22px; }
1603
to {
1604
border-image: -gtk-gradient(radial, center center, 0, center center, 0.11364, to(#FF4081), to(transparent)) 22/22px; } }
1605
@keyframes check_indeterminate {
1606
from {
1607
-gtk-icon-transform: unset; }
1608
50% {
1609
-gtk-icon-transform: scale(0, 1); }
1610
to {
1611
-gtk-icon-transform: unset; } }
1612
modelbutton.flat check:not(:indeterminate):checked,
1613
.menuitem.button.flat check:not(:indeterminate):checked,
1614
check:not(:indeterminate):checked {
1615
animation: check_check 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
1616
1617
check:not(:indeterminate):checked:active {
1618
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; }
1619
1620
modelbutton.flat check:indeterminate:checked, modelbutton.flat radio:indeterminate:checked,
1621
.menuitem.button.flat check:indeterminate:checked,
1622
.menuitem.button.flat radio:indeterminate:checked,
1623
check:indeterminate:checked, radio:indeterminate:checked {
1624
animation: check_indeterminate 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
1625
1626
check:indeterminate:checked:active, radio:indeterminate:checked:active {
1627
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; }
1628
1629
menu menuitem check:not(:indeterminate):checked,
1630
menu menuitem radio:not(:indeterminate):checked,
1631
menu menuitem check:indeterminate:checked,
1632
menu menuitem radio:indeterminate:checked {
1633
animation: none; }
1634
1635
treeview.view check,
1636
treeview.view radio {
1637
padding: 0; }
1638
treeview.view check:hover,
1639
treeview.view radio:hover {
1640
box-shadow: inset 0 0 0 9999px alpha(rgba(0, 0, 0, 0.8), 0.05); }
1641
treeview.view check:hover:disabled,
1642
treeview.view radio:hover:disabled {
1643
box-shadow: none; }
1644
treeview.view check:hover:selected,
1645
treeview.view radio:hover:selected {
1646
box-shadow: inset 0 0 0 9999px alpha(#FFFFFF, 0.05); }
1647
treeview.view check,
1648
treeview.view radio {
1649
color: rgba(0, 0, 0, 0.6); }
1650
treeview.view check:hover, treeview.view check:active,
1651
treeview.view radio:hover,
1652
treeview.view radio:active {
1653
color: rgba(0, 0, 0, 0.8); }
1654
treeview.view check:disabled,
1655
treeview.view radio:disabled {
1656
color: rgba(0, 0, 0, 0.24); }
1657
treeview.view check:checked, treeview.view check:indeterminate,
1658
treeview.view radio:checked,
1659
treeview.view radio:indeterminate {
1660
color: #FF4081; }
1661
treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled,
1662
treeview.view radio:checked:disabled,
1663
treeview.view radio:indeterminate:disabled {
1664
color: rgba(255, 64, 129, 0.4); }
1665
treeview.view check:selected,
1666
treeview.view radio:selected {
1667
color: rgba(255, 255, 255, 0.75); }
1668
treeview.view check:selected:hover, treeview.view check:selected:active,
1669
treeview.view radio:selected:hover,
1670
treeview.view radio:selected:active {
1671
color: #FFFFFF; }
1672
treeview.view check:selected:disabled,
1673
treeview.view radio:selected:disabled {
1674
color: rgba(255, 255, 255, 0.3); }
1675
treeview.view check:selected:checked, treeview.view check:selected:indeterminate,
1676
treeview.view radio:selected:checked,
1677
treeview.view radio:selected:indeterminate {
1678
color: #FF4081; }
1679
treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled,
1680
treeview.view radio:selected:checked:disabled,
1681
treeview.view radio:selected:indeterminate:disabled {
1682
color: rgba(255, 64, 129, 0.4); }
1683
1684
treeview.view radio:checked {
1685
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic.png")));
1686
border-image: none; }
1687
1688
/************
1689
* GtkScale *
1690
************/
1691
scale {
1692
min-height: 8px;
1693
min-width: 8px;
1694
padding: 12px; }
1695
scale * {
1696
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1); }
1697
scale slider {
1698
min-height: 24px;
1699
min-width: 24px;
1700
margin: -10px; }
1701
scale trough {
1702
outline-offset: 2px;
1703
background-color: alpha(currentColor, 0.3); }
1704
scale trough:disabled {
1705
color: rgba(0, 0, 0, 0.32); }
1706
scale highlight {
1707
background-color: #FF4081; }
1708
scale highlight:disabled {
1709
background-color: transparent; }
1710
scale fill {
1711
background-color: alpha(currentColor, 0.3); }
1712
scale fill:disabled {
1713
background-color: transparent; }
1714
scale slider {
1715
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1716
background-repeat: no-repeat;
1717
background-position: center;
1718
background-size: calc(100% - 8px); }
1719
scale slider {
1720
background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")); }
1721
scale slider:disabled {
1722
background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png")); }
1723
scale slider:hover {
1724
background-size: calc(100% - 4px); }
1725
scale slider:active {
1726
background-size: calc(100% - 0px); }
1727
scale.fine-tune slider {
1728
background-size: calc(100% - 12px); }
1729
scale value {
1730
color: alpha(currentColor, 0.6); }
1731
scale marks {
1732
color: alpha(currentColor, 0.3); }
1733
scale marks.top {
1734
margin-bottom: 8px;
1735
margin-top: -16px; }
1736
scale marks.bottom {
1737
margin-top: 8px;
1738
margin-bottom: -16px; }
1739
scale marks.top {
1740
margin-right: 8px;
1741
margin-left: -16px; }
1742
scale marks.bottom {
1743
margin-left: 8px;
1744
margin-right: -16px; }
1745
scale.horizontal indicator {
1746
min-height: 8px;
1747
min-width: 1px; }
1748
scale.vertical indicator {
1749
min-height: 1px;
1750
min-width: 8px; }
1751
scale.horizontal.marks-before:not(.marks-after) slider {
1752
min-height: 30px;
1753
min-width: 24px;
1754
margin-top: -16px;
1755
background-position: center calc(100% - 4px); }
1756
scale.horizontal.marks-before:not(.marks-after) slider {
1757
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); }
1758
scale.horizontal.marks-before:not(.marks-after) slider:disabled {
1759
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png")); }
1760
scale.horizontal.marks-before:not(.marks-after) slider:hover {
1761
background-position: center calc(100% - 2px); }
1762
scale.horizontal.marks-before:not(.marks-after) slider:active {
1763
background-position: center calc(100% - 0px); }
1764
scale.horizontal.marks-before:not(.marks-after).fine-tune slider {
1765
background-position: center calc(100% - 6px); }
1766
scale.horizontal.marks-after:not(.marks-before) slider {
1767
min-height: 30px;
1768
min-width: 24px;
1769
margin-bottom: -16px;
1770
background-position: center calc(4px); }
1771
scale.horizontal.marks-after:not(.marks-before) slider {
1772
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")); }
1773
scale.horizontal.marks-after:not(.marks-before) slider:disabled {
1774
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png")); }
1775
scale.horizontal.marks-after:not(.marks-before) slider:hover {
1776
background-position: center calc(2px); }
1777
scale.horizontal.marks-after:not(.marks-before) slider:active {
1778
background-position: center calc(0px); }
1779
scale.horizontal.marks-after:not(.marks-before).fine-tune slider {
1780
background-position: center calc(6px); }
1781
scale.vertical.marks-before:not(.marks-after) slider {
1782
min-height: 24px;
1783
min-width: 30px;
1784
margin-left: -16px;
1785
background-position: calc(4px) center; }
1786
scale.vertical.marks-before:not(.marks-after) slider {
1787
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")); }
1788
scale.vertical.marks-before:not(.marks-after) slider:disabled {
1789
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png")); }
1790
scale.vertical.marks-before:not(.marks-after) slider:hover {
1791
background-position: calc(2px) center; }
1792
scale.vertical.marks-before:not(.marks-after) slider:active {
1793
background-position: calc(0px) center; }
1794
scale.vertical.marks-before:not(.marks-after).fine-tune slider {
1795
background-position: calc(6px) center; }
1796
scale.vertical.marks-after:not(.marks-before) slider {
1797
min-height: 24px;
1798
min-width: 30px;
1799
margin-right: -16px;
1800
background-position: calc(100% - 4px) center; }
1801
scale.vertical.marks-after:not(.marks-before) slider {
1802
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")); }
1803
scale.vertical.marks-after:not(.marks-before) slider:disabled {
1804
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png")); }
1805
scale.vertical.marks-after:not(.marks-before) slider:hover {
1806
background-position: calc(100% - 2px) center; }
1807
scale.vertical.marks-after:not(.marks-before) slider:active {
1808
background-position: calc(100% - 0px) center; }
1809
scale.vertical.marks-after:not(.marks-before).fine-tune slider {
1810
background-position: calc(100% - 6px) center; }
1811
scale.color {
1812
min-height: 0;
1813
min-width: 0; }
1814
scale.color.horizontal {
1815
padding: 0 0 12px 0; }
1816
scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) {
1817
margin-bottom: -12px;
1818
margin-top: -2px; }
1819
scale.color.vertical:dir(ltr) {
1820
padding: 0 0 0 12px; }
1821
scale.color.vertical:dir(ltr) slider {
1822
margin-left: -12px;
1823
margin-right: -2px; }
1824
scale.color.vertical:dir(rtl) {
1825
padding: 0 12px 0 0; }
1826
scale.color.vertical:dir(rtl) slider {
1827
margin-right: -12px;
1828
margin-left: -2px; }
1829
1830
/*****************
1831
* Progress bars *
1832
*****************/
1833
progressbar {
1834
color: rgba(0, 0, 0, 0.48);
1835
font-size: smaller; }
1836
progressbar.horizontal trough,
1837
progressbar.horizontal progress {
1838
min-height: 4px; }
1839
progressbar.vertical trough,
1840
progressbar.vertical progress {
1841
min-width: 4px; }
1842
progressbar trough {
1843
background-color: rgba(66, 165, 245, 0.3); }
1844
progressbar progress {
1845
background-color: #42A5F5; }
1846
progressbar trough.empty progress {
1847
all: unset; }
1848
1849
/*************
1850
* Level Bar *
1851
*************/
1852
levelbar block {
1853
min-width: 32px;
1854
min-height: 4px; }
1855
levelbar.vertical block {
1856
min-width: 4px;
1857
min-height: 32px; }
1858
levelbar trough {
1859
padding: 2px;
1860
border-radius: 2px;
1861
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
1862
border-image: none;
1863
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1864
background-color: #FFFFFF;
1865
color: rgba(0, 0, 0, 0.8); }
1866
levelbar trough:disabled {
1867
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1868
background-color: #FAFAFA;
1869
color: rgba(0, 0, 0, 0.32); }
1870
levelbar.horizontal.discrete block {
1871
margin: 0 1px; }
1872
levelbar.vertical.discrete block {
1873
margin: 1px 0; }
1874
levelbar.horizontal.discrete trough {
1875
padding: 2px 1px; }
1876
levelbar.vertical.discrete trough {
1877
padding: 1px 2px; }
1878
levelbar block.low {
1879
background-color: #FF6D00; }
1880
levelbar block.high, levelbar block:not(.empty) {
1881
background-color: #42A5F5; }
1882
levelbar block.full {
1883
background-color: #00C853; }
1884
levelbar block.empty {
1885
background-color: alpha(currentColor, 0.3);
1886
color: rgba(0, 0, 0, 0.32); }
1887
1888
/****************
1889
* Print dialog *
1890
*****************/
1891
printdialog paper {
1892
padding: 0;
1893
border: 1px solid rgba(0, 0, 0, 0.1);
1894
background: #FFFFFF;
1895
color: rgba(0, 0, 0, 0.8); }
1896
printdialog .dialog-action-box {
1897
margin: 12px; }
1898
1899
/**********
1900
* Frames *
1901
**********/
1902
frame > border,
1903
.frame {
1904
margin: 0;
1905
padding: 0;
1906
border: 1px solid rgba(0, 0, 0, 0.1);
1907
border-radius: 0;
1908
box-shadow: none; }
1909
frame > border.flat,
1910
.frame.flat {
1911
border-style: none; }
1912
1913
actionbar > revealer > box {
1914
padding: 6px;
1915
border-top: 1px solid rgba(0, 0, 0, 0.1); }
1916
1917
scrolledwindow viewport.frame {
1918
border-style: none; }
1919
overshoot.top {
1920
background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1921
background-repeat: no-repeat;
1922
background-position: center top;
1923
background-color: transparent;
1924
border: none;
1925
box-shadow: none; }
1926
overshoot.bottom {
1927
background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1928
background-repeat: no-repeat;
1929
background-position: center bottom;
1930
background-color: transparent;
1931
border: none;
1932
box-shadow: none; }
1933
overshoot.left {
1934
background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1935
background-repeat: no-repeat;
1936
background-position: left center;
1937
background-color: transparent;
1938
border: none;
1939
box-shadow: none; }
1940
overshoot.right {
1941
background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(64, 196, 255, 0.3)), to(transparent));
1942
background-repeat: no-repeat;
1943
background-position: right center;
1944
background-color: transparent;
1945
border: none;
1946
box-shadow: none; }
1947
undershoot.top {
1948
background-color: transparent;
1949
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1950
padding-top: 1px;
1951
background-size: 12px 1px;
1952
background-repeat: repeat-x;
1953
background-origin: content-box;
1954
background-position: left top; }
1955
undershoot.bottom {
1956
background-color: transparent;
1957
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1958
padding-bottom: 1px;
1959
background-size: 12px 1px;
1960
background-repeat: repeat-x;
1961
background-origin: content-box;
1962
background-position: left bottom; }
1963
undershoot.left {
1964
background-color: transparent;
1965
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1966
padding-left: 1px;
1967
background-size: 1px 12px;
1968
background-repeat: repeat-y;
1969
background-origin: content-box;
1970
background-position: left top; }
1971
undershoot.right {
1972
background-color: transparent;
1973
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
1974
padding-right: 1px;
1975
background-size: 1px 12px;
1976
background-repeat: repeat-y;
1977
background-origin: content-box;
1978
background-position: right top; }
1979
junction {
1980
border-style: solid none none solid;
1981
border-width: 1px;
1982
border-color: rgba(0, 0, 0, 0.1);
1983
background-color: #FFFFFF; }
1984
junction:dir(rtl) {
1985
border-style: solid solid none none; }
1986
1987
separator {
1988
min-width: 1px;
1989
min-height: 1px;
1990
background: rgba(0, 0, 0, 0.1); }
1991
1992
/*********
1993
* Lists *
1994
*********/
1995
list {
1996
border-color: rgba(0, 0, 0, 0.1);
1997
background-color: #FFFFFF; }
1998
list row {
1999
padding: 2px; }
2000
2001
row.activatable, .view, iconview, treeview.view header button {
2002
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);
2003
box-shadow: inset 0 0 0 9999px transparent;
2004
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
2005
background-repeat: no-repeat;
2006
background-position: center;
2007
background-size: 1000% 1000%; }
2008
row.activatable:hover, .view:hover, iconview:hover, treeview.view header button:hover {
2009
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);
2010
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.05); }
2011
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 {
2012
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0;
2013
animation: ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1) forwards;
2014
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.15);
2015
background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.15) 10%, transparent 0%);
2016
background-size: 0% 0%; }
2017
2018
/*********************
2019
* App Notifications *
2020
*********************/
2021
.app-notification {
2022
margin: 8px; }
2023
.app-notification.frame,
2024
.app-notification border {
2025
border-style: none; }
2026
2027
/*************
2028
* Expanders *
2029
*************/
2030
expander arrow {
2031
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
2032
min-width: 16px;
2033
min-height: 16px;
2034
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
2035
-gtk-icon-transform: rotate(-90deg);
2036
color: rgba(0, 0, 0, 0.6); }
2037
expander arrow:dir(rtl) {
2038
-gtk-icon-transform: rotate(90deg); }
2039
expander arrow:checked {
2040
-gtk-icon-transform: unset; }
2041
expander arrow:hover, expander arrow:active {
2042
color: rgba(0, 0, 0, 0.8); }
2043
expander arrow:disabled {
2044
color: rgba(0, 0, 0, 0.24); }
2045
expander arrow:selected {
2046
color: rgba(255, 255, 255, 0.75); }
2047
expander arrow:selected:hover, expander arrow:selected:active {
2048
color: #FFFFFF; }
2049
expander arrow:selected:disabled {
2050
color: rgba(255, 255, 255, 0.3); }
2051
2052
/************
2053
* Calendar *
2054
***********/
2055
calendar {
2056
padding: 1px;
2057
border: 1px solid rgba(0, 0, 0, 0.1);
2058
color: rgba(0, 0, 0, 0.8); }
2059
calendar:disabled {
2060
color: rgba(0, 0, 0, 0.32); }
2061
calendar:selected {
2062
border-radius: 3px; }
2063
calendar.header {
2064
border-style: none none solid;
2065
border-radius: 0; }
2066
calendar.highlight {
2067
color: alpha(currentColor, 0.6);
2068
font-weight: 500; }
2069
calendar:indeterminate {
2070
color: alpha(currentColor, 0.4); }
2071
2072
/***********
2073
* Dialogs *
2074
***********/
2075
messagedialog.background {
2076
background-color: #FAFAFA; }
2077
messagedialog .titlebar {
2078
min-height: 20px;
2079
border-style: none;
2080
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
2081
background-color: #FAFAFA;
2082
color: rgba(0, 0, 0, 0.8); }
2083
messagedialog .titlebar:backdrop {
2084
color: rgba(0, 0, 0, 0.6); }
2085
messagedialog.csd.background {
2086
border-bottom-left-radius: 2px;
2087
border-bottom-right-radius: 2px; }
2088
messagedialog.csd .dialog-action-area button {
2089
padding: 8px 16px;
2090
border-top: 1px solid rgba(0, 0, 0, 0.1);
2091
border-radius: 0; }
2092
messagedialog.csd .dialog-action-area button:first-child {
2093
border-bottom-left-radius: 2px; }
2094
messagedialog.csd .dialog-action-area button:last-child {
2095
border-bottom-right-radius: 2px; }
2096
2097
filechooser .dialog-action-box {
2098
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2099
filechooser #pathbarbox {
2100
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2101
background-color: #F5F5F5; }
2102
2103
filechooserbutton:drop(active) {
2104
box-shadow: none; }
2105
2106
/***********
2107
* Sidebar *
2108
***********/
2109
.sidebar {
2110
border-style: none;
2111
background-color: #FAFAFA; }
2112
stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) {
2113
border-right: 1px solid rgba(0, 0, 0, 0.1);
2114
border-left-style: none; }
2115
stacksidebar.sidebar:dir(rtl) list
2116
.sidebar:dir(rtl), stacksidebar.sidebar.right list
2117
.sidebar:dir(rtl), .sidebar.right {
2118
border-left: 1px solid rgba(0, 0, 0, 0.1);
2119
border-right-style: none; }
2120
.sidebar list {
2121
background-color: transparent; }
2122
paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar {
2123
border-style: none; }
2124
2125
stacksidebar row {
2126
padding: 10px 4px; }
2127
stacksidebar row > label {
2128
padding-left: 6px;
2129
padding-right: 6px; }
2130
2131
/****************
2132
* File chooser *
2133
****************/
2134
placessidebar > viewport.frame {
2135
border-style: none; }
2136
placessidebar list {
2137
padding: 1px 0 4px; }
2138
placessidebar row {
2139
min-height: 32px;
2140
margin: -1px 0;
2141
padding: 0; }
2142
placessidebar row > revealer {
2143
padding: 0 12px; }
2144
placessidebar row:selected {
2145
color: #FFFFFF; }
2146
placessidebar row:disabled {
2147
color: rgba(0, 0, 0, 0.32); }
2148
placessidebar row image.sidebar-icon {
2149
opacity: 0.6; }
2150
placessidebar row image.sidebar-icon:dir(ltr) {
2151
padding-right: 8px; }
2152
placessidebar row image.sidebar-icon:dir(rtl) {
2153
padding-left: 8px; }
2154
placessidebar row label.sidebar-label:dir(ltr) {
2155
padding-right: 2px; }
2156
placessidebar row label.sidebar-label:dir(rtl) {
2157
padding-left: 2px; }
2158
placessidebar row.sidebar-placeholder-row {
2159
min-height: 2px;
2160
padding: 0 8px;
2161
background-image: image(#FF4081);
2162
background-clip: content-box; }
2163
placessidebar row.sidebar-new-bookmark-row {
2164
color: #FF4081; }
2165
placessidebar row:drop(active):not(:disabled) {
2166
box-shadow: inset 0 0 0 2px #FF4081; }
2167
2168
placesview .server-list-button > image {
2169
-gtk-icon-transform: rotate(0turn); }
2170
placesview .server-list-button:checked > image {
2171
-gtk-icon-transform: rotate(-0.5turn); }
2172
placesview > actionbar > revealer > box > label {
2173
padding-left: 8px;
2174
padding-right: 8px; }
2175
2176
/*********
2177
* Paned *
2178
*********/
2179
paned > separator {
2180
min-width: 1px;
2181
min-height: 1px;
2182
-gtk-icon-source: none;
2183
border-style: none;
2184
background-color: transparent;
2185
background-image: image(rgba(0, 0, 0, 0.1));
2186
background-size: 1px 1px;
2187
background-clip: content-box; }
2188
paned > separator.wide {
2189
min-width: 6px;
2190
min-height: 6px;
2191
background-color: #F5F5F5;
2192
background-image: image(rgba(0, 0, 0, 0.1)), image(rgba(0, 0, 0, 0.1));
2193
background-size: 1px 1px, 1px 1px; }
2194
paned.horizontal > separator {
2195
background-repeat: repeat-y; }
2196
paned.horizontal > separator:dir(ltr) {
2197
margin: 0 -8px 0 0;
2198
padding: 0 8px 0 0;
2199
background-position: left; }
2200
paned.horizontal > separator:dir(rtl) {
2201
margin: 0 0 0 -8px;
2202
padding: 0 0 0 8px;
2203
background-position: right; }
2204
paned.horizontal > separator.wide {
2205
margin: 0;
2206
padding: 0;
2207
background-repeat: repeat-y, repeat-y;
2208
background-position: left, right; }
2209
paned.vertical > separator {
2210
margin: 0 0 -8px 0;
2211
padding: 0 0 8px 0;
2212
background-repeat: repeat-x;
2213
background-position: top; }
2214
paned.vertical > separator.wide {
2215
margin: 0;
2216
padding: 0;
2217
background-repeat: repeat-x, repeat-x;
2218
background-position: bottom, top; }
2219
2220
/**************
2221
* GtkInfoBar *
2222
**************/
2223
infobar {
2224
border-style: none; }
2225
infobar.info {
2226
background-color: #66BB6A; }
2227
infobar.question {
2228
background-color: #42A5F5; }
2229
infobar.warning {
2230
background-color: #FFA726; }
2231
infobar.error {
2232
background-color: #EF5350; }
2233
infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error {
2234
color: #FFFFFF; }
2235
2236
/************
2237
* Tooltips *
2238
************/
2239
tooltip {
2240
border-radius: 2px;
2241
box-shadow: none; }
2242
tooltip.background {
2243
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
2244
background-color: rgba(255, 255, 255, 0.9); }
2245
tooltip:not(.csd) {
2246
border: 1px solid rgba(0, 0, 0, 0.1);
2247
border-radius: 3px;
2248
background-clip: padding-box; }
2249
tooltip decoration {
2250
background-color: transparent; }
2251
tooltip label {
2252
min-height: 20px;
2253
padding: 0 2px; }
2254
2255
/*****************
2256
* Color Chooser *
2257
*****************/
2258
colorswatch.top {
2259
border-top-left-radius: 2.5px;
2260
border-top-right-radius: 2.5px; }
2261
colorswatch.top overlay {
2262
border-top-left-radius: 2px;
2263
border-top-right-radius: 2px; }
2264
colorswatch.bottom {
2265
border-bottom-left-radius: 2.5px;
2266
border-bottom-right-radius: 2.5px; }
2267
colorswatch.bottom overlay {
2268
border-bottom-left-radius: 2px;
2269
border-bottom-right-radius: 2px; }
2270
colorswatch.left, colorswatch:first-child:not(.top) {
2271
border-top-left-radius: 2.5px;
2272
border-bottom-left-radius: 2.5px; }
2273
colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
2274
border-top-left-radius: 2px;
2275
border-bottom-left-radius: 2px; }
2276
colorswatch.right, colorswatch:last-child:not(.bottom) {
2277
border-top-right-radius: 2.5px;
2278
border-bottom-right-radius: 2.5px; }
2279
colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
2280
border-top-right-radius: 2px;
2281
border-bottom-right-radius: 2px; }
2282
colorswatch.dark overlay {
2283
color: #FFFFFF; }
2284
colorswatch.light overlay {
2285
color: rgba(0, 0, 0, 0.8); }
2286
colorswatch.dark {
2287
color: #FFFFFF; }
2288
colorswatch.light {
2289
color: rgba(0, 0, 0, 0.8); }
2290
colorswatch:drop(active) {
2291
box-shadow: none; }
2292
colorswatch:drop(active).light overlay {
2293
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; }
2294
colorswatch:drop(active).dark overlay {
2295
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; }
2296
colorswatch overlay {
2297
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
2298
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
2299
colorswatch overlay:hover {
2300
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
2301
colorswatch#add-color-button {
2302
border-radius: 2px 2px 0 0;
2303
color: #FFFFFF; }
2304
colorswatch#add-color-button:only-child {
2305
border-radius: 2px; }
2306
colorswatch#add-color-button overlay {
2307
background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #42A5F5 75%);
2308
color: #FFFFFF; }
2309
colorswatch:disabled {
2310
opacity: 0.4; }
2311
colorswatch:disabled overlay {
2312
box-shadow: none; }
2313
colorswatch#editor-color-sample {
2314
border-radius: 2.5px; }
2315
colorswatch#editor-color-sample overlay {
2316
border-radius: 2px; }
2317
2318
colorchooser .popover.osd {
2319
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
2320
border-radius: 2px;
2321
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);
2322
background-color: #FFFFFF; }
2323
colorchooser .popover.osd:backdrop {
2324
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); }
2325
2326
/********
2327
* Misc *
2328
********/
2329
.content-view {
2330
background-color: #F5F5F5; }
2331
2332
/**********************
2333
* Window Decorations *
2334
*********************/
2335
decoration {
2336
transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
2337
border-radius: 2px 2px 0 0;
2338
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent;
2339
margin: 8px; }
2340
decoration:backdrop {
2341
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent; }
2342
.maximized decoration, .fullscreen decoration, .tiled decoration {
2343
border-radius: 0; }
2344
.popup decoration {
2345
box-shadow: none; }
2346
.ssd decoration {
2347
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); }
2348
.csd.popup decoration {
2349
border-radius: 2px;
2350
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
2351
tooltip.csd decoration {
2352
border-radius: 2px;
2353
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
2354
messagedialog.csd decoration {
2355
border-radius: 2px; }
2356
.solid-csd decoration {
2357
margin: 0;
2358
padding: 4px;
2359
box-shadow: inset 0 0 0 4px #455A64; }
2360
2361
.view:selected, iconview:selected, .view text selection, iconview text selection,
2362
textview text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
2363
entry selection, modelbutton.flat:selected,
2364
.menuitem.button.flat:selected, popover.background.menu button:checked,
2365
popover.background button.model:checked, row:selected, calendar:selected {
2366
background-color: #42A5F5; }
2367
row:selected label, label:selected, .view:selected, iconview:selected, .view text selection, iconview text selection,
2368
textview text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
2369
entry selection, modelbutton.flat:selected,
2370
.menuitem.button.flat:selected, popover.background.menu button:checked,
2371
popover.background button.model:checked, row:selected, calendar:selected {
2372
color: #FFFFFF; }
2373
row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, .view text selection:disabled, iconview text selection:disabled,
2374
textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled,
2375
entry selection:disabled, modelbutton.flat:disabled:selected,
2376
.menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked,
2377
popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected {
2378
color: rgba(255, 255, 255, 0.4); }
2379
2380
.monospace {
2381
font-family: monospace; }
2382
2383
/**********************
2384
* Touch Copy & Paste *
2385
*********************/
2386
cursor-handle {
2387
border-radius: 9999px;
2388
background-color: #FF4081;
2389
background-image: none; }
2390
cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) {
2391
padding-left: 6px;
2392
border-top-right-radius: 0; }
2393
cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) {
2394
padding-right: 6px;
2395
border-top-left-radius: 0; }
2396
cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) {
2397
-GtkWidget-text-handle-width: 24;
2398
-GtkWidget-text-handle-height: 30;
2399
-gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")); }
2400
2401
.context-menu {
2402
font: initial; }
2403
2404
.keycap {
2405
min-width: 12px;
2406
min-height: 26px;
2407
margin-top: 2px;
2408
padding-bottom: 2px;
2409
padding-left: 8px;
2410
padding-right: 8px;
2411
border: solid 1px rgba(0, 0, 0, 0.1);
2412
border-radius: 3px;
2413
box-shadow: inset 0 -2px rgba(0, 0, 0, 0.1);
2414
background-color: #FFFFFF;
2415
color: rgba(0, 0, 0, 0.8);
2416
font-size: smaller; }
2417
2418
:not(decoration):not(window):drop(active) {
2419
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
2420
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;
2421
caret-color: #FF4081; }
2422
2423
stackswitcher button.text-button {
2424
min-width: 100px; }
2425
2426
stackswitcher button.circular,
2427
stackswitcher button.text-button.circular {
2428
min-width: 32px;
2429
min-height: 32px;
2430
padding: 0; }
2431
2432
/************
2433
* Nautilus *
2434
************/
2435
.nautilus-window,
2436
.nautilus-window notebook,
2437
.nautilus-window notebook > stack {
2438
background-color: #FFFFFF; }
2439
2440
.nautilus-window paned > separator {
2441
background-color: #F5F5F5; }
2442
2443
.nautilus-desktop.nautilus-canvas-item, .caja-desktop.caja-canvas-item {
2444
color: #FFFFFF;
2445
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
2446
2447
.nautilus-desktop.nautilus-canvas-item:selected, .caja-desktop.caja-canvas-item:selected {
2448
text-shadow: none; }
2449
2450
@keyframes needs_attention_keyframes {
2451
from {
2452
background-color: transparent; }
2453
to {
2454
background-color: alpha(currentColor, 0.3); } }
2455
.nautilus-operations-button-needs-attention {
2456
color: #FF4081;
2457
animation: needs_attention_keyframes 0.3s cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; }
2458
2459
.nautilus-operations-button-needs-attention-multiple {
2460
color: #FF4081;
2461
animation: needs_attention_keyframes 0.3s cubic-bezier(0.4, 0, 0.2, 1) 4 alternate; }
2462
2463
.nautilus-window .floating-bar {
2464
min-height: 32px;
2465
padding: 0;
2466
border-style: solid solid none;
2467
border-width: 1px;
2468
border-color: rgba(0, 0, 0, 0.1);
2469
border-radius: 3px 3px 0 0;
2470
background-color: #FFFFFF;
2471
background-clip: padding-box;
2472
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), border-width 0; }
2473
.nautilus-window .floating-bar.bottom.left {
2474
margin-right: 7px;
2475
border-left-style: none;
2476
border-top-left-radius: 0; }
2477
.nautilus-window .floating-bar.bottom.right {
2478
margin-left: 7px;
2479
border-right-style: none;
2480
border-top-right-radius: 0; }
2481
.nautilus-window .floating-bar button {
2482
margin: 6px; }
2483
2484
.disk-space-display.unknown {
2485
background-color: #FF6D00; }
2486
2487
.disk-space-display.used {
2488
background-color: #42A5F5; }
2489
2490
.disk-space-display.free {
2491
background-color: alpha(currentColor, 0.3);
2492
color: rgba(0, 0, 0, 0.32); }
2493
2494
.documents-entry-tag, .photos-entry-tag {
2495
margin: 3px -2px 3px 8px;
2496
padding: 0 8px;
2497
border-radius: 9999px;
2498
box-shadow: none;
2499
background-color: #42A5F5;
2500
color: #FFFFFF; }
2501
.documents-entry-tag:hover, .photos-entry-tag:hover {
2502
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
2503
2504
.documents-entry-tag.button, .button.photos-entry-tag {
2505
margin: 0 -2px;
2506
padding: 4px;
2507
border-radius: 9999px;
2508
box-shadow: none;
2509
color: rgba(255, 255, 255, 0.75); }
2510
.documents-entry-tag.button:hover, .button.photos-entry-tag:hover, .documents-entry-tag.button:active, .button.photos-entry-tag:active {
2511
color: #FFFFFF; }
2512
2513
.nautilus-window searchbar {
2514
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2515
2516
.nautilus-window .searchbar-container {
2517
margin-top: -1px; }
2518
2519
/*********
2520
* gedit *
2521
*********/
2522
.open-document-selector-name-label {
2523
font-weight: bold; }
2524
2525
.open-document-selector-path-label {
2526
color: alpha(currentColor, 0.6);
2527
font-size: smaller; }
2528
2529
.gedit-document-panel {
2530
background-color: #FAFAFA; }
2531
2532
.gedit-document-panel-group-row {
2533
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2534
2535
.gedit-document-panel-group-row:first-child {
2536
border-top: none; }
2537
2538
.gedit-document-panel row button.flat {
2539
margin-top: 8px;
2540
margin-bottom: 8px; }
2541
2542
.gedit-side-panel-paned statusbar {
2543
border-top: 1px solid rgba(0, 0, 0, 0.1); }
2544
2545
.gedit-search-slider {
2546
margin: 4px 4px 8px; }
2547
.gedit-search-slider entry:dir(ltr), .gedit-search-slider entry:dir(rtl) {
2548
border-radius: 2px; }
2549
.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag, .gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag {
2550
all: unset;
2551
color: alpha(currentColor, 0.6); }
2552
.gedit-search-slider entry:dir(ltr) {
2553
margin-right: -58px;
2554
padding-right: 58px; }
2555
.gedit-search-slider entry:dir(ltr) .gedit-search-entry-occurrences-tag {
2556
margin-left: 6px; }
2557
.gedit-search-slider entry:dir(ltr) image.right {
2558
margin-right: 0; }
2559
.gedit-search-slider entry:dir(rtl) {
2560
margin-left: -58px;
2561
padding-left: 58px; }
2562
.gedit-search-slider entry:dir(rtl) .gedit-search-entry-occurrences-tag {
2563
margin-right: 6px; }
2564
.gedit-search-slider entry:dir(rtl) image.left {
2565
margin-left: 0; }
2566
.gedit-search-slider entry.error ~ button {
2567
color: rgba(255, 255, 255, 0.75); }
2568
.gedit-search-slider entry.error ~ button:hover, .gedit-search-slider entry.error ~ button:active {
2569
color: #FFFFFF; }
2570
.gedit-search-slider entry.error ~ button:disabled {
2571
color: rgba(255, 255, 255, 0.3); }
2572
.gedit-search-slider button {
2573
border: solid 6px transparent; }
2574
.gedit-search-slider button:last-child:dir(ltr), .gedit-search-slider button:not(:first-child):dir(rtl) {
2575
margin-left: -3px; }
2576
.gedit-search-slider button:first-child:dir(rtl), .gedit-search-slider button:not(:last-child):dir(ltr) {
2577
margin-right: -3px; }
2578
2579
frame.gedit-map-frame > border:dir(ltr) {
2580
border-style: none none none solid; }
2581
frame.gedit-map-frame > border:dir(rtl) {
2582
border-style: none solid none none; }
2583
2584
/**************
2585
* Tweak Tool *
2586
**************/
2587
.tweak-categories {
2588
background-image: image(#FAFAFA); }
2589
.tweak-categories separator {
2590
min-width: 0;
2591
min-height: 0;
2592
background: transparent; }
2593
2594
.tweak {
2595
padding: 3px; }
2596
.tweak.title:hover {
2597
box-shadow: none; }
2598
2599
.tweak-group-white,
2600
.tweak-white,
2601
.tweak-white:hover {
2602
background-image: image(#FFFFFF); }
2603
2604
.tweak-startup,
2605
.tweak-startup:hover {
2606
background-image: image(#FFFFFF); }
2607
2608
.tweak-group-startup {
2609
background-image: image(#FFFFFF);
2610
border: 1px solid rgba(0, 0, 0, 0.1); }
2611
2612
/***********
2613
* Builder *
2614
***********/
2615
workbench stack.titlebar {
2616
padding: 0; }
2617
2618
workbench:not(.tiled):not(.maximized):not(.fullscreen) stack.titlebar headerbar {
2619
border-radius: 2px 2px 0 0; }
2620
2621
perspectiveswitcher {
2622
background-color: #F5F5F5; }
2623
2624
perspectiveswitcher button:checked {
2625
color: #42A5F5; }
2626
2627
layouttabbar {
2628
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2629
background-color: #F5F5F5; }
2630
2631
layouttabbar > box > button {
2632
margin: 4px 0; }
2633
2634
layouttab {
2635
margin: 0 8px;
2636
border-style: none solid;
2637
border-width: 1px;
2638
border-color: rgba(0, 0, 0, 0.1);
2639
box-shadow: inset 0 -2px #42A5F5;
2640
background-color: #FFFFFF; }
2641
2642
layouttab separator.vertical {
2643
margin: 8px 4px; }
2644
2645
layouttab button.text-button, layouttab button.image-button, layouttab button {
2646
margin-top: 8px;
2647
margin-bottom: 8px;
2648
padding: 0 4px; }
2649
2650
layouttab > box > button.close {
2651
border-radius: 9999px; }
2652
2653
layout {
2654
border: 1px solid rgba(0, 0, 0, 0.1);
2655
-PnlDockBin-handle-size: 1; }
2656
2657
entry.search-missing {
2658
background-color: #DD2C00;
2659
color: #FFFFFF; }
2660
2661
workbench treeview.image {
2662
color: alpha(currentColor, 0.6); }
2663
2664
workbench treeview.image:selected {
2665
color: rgba(255, 255, 255, 0.6); }
2666
2667
dockbin {
2668
border: 1px solid rgba(0, 0, 0, 0.1);
2669
-PnlDockBin-handle-size: 1; }
2670
2671
dockpaned {
2672
border: 1px solid rgba(0, 0, 0, 0.1); }
2673
2674
eggsearchbar box.search-bar {
2675
padding: 0 8px;
2676
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2677
background-color: #F5F5F5; }
2678
2679
docktabstrip {
2680
padding: 0 8px;
2681
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2682
background-color: #F5F5F5; }
2683
2684
docktab {
2685
transition: all 0.3s cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
2686
min-height: 20px;
2687
min-width: 20px;
2688
margin-bottom: -1px;
2689
padding: 6px 6px;
2690
outline-offset: -6px;
2691
border-width: 1px;
2692
border-color: transparent;
2693
background-image: radial-gradient(circle farthest-corner at center, #42A5F5 10%, transparent 0%);
2694
background-repeat: no-repeat;
2695
background-position: center;
2696
background-size: 0% 0%;
2697
color: rgba(0, 0, 0, 0.6);
2698
font-weight: 500; }
2699
docktab:hover {
2700
box-shadow: inset 0 -2px alpha(currentColor, 0.3);
2701
color: rgba(0, 0, 0, 0.8); }
2702
docktab:checked {
2703
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);
2704
box-shadow: inset 0 -2px #42A5F5;
2705
background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
2706
background-size: 1000% 1000%;
2707
color: rgba(0, 0, 0, 0.8); }
2708
2709
dockoverlayedge {
2710
background-color: #F5F5F5; }
2711
2712
dockoverlayedge docktabstrip {
2713
padding: 0;
2714
border: none; }
2715
2716
dockoverlayedge.left-edge docktab:hover {
2717
box-shadow: inset -2px 0 alpha(currentColor, 0.3); }
2718
dockoverlayedge.left-edge docktab:checked {
2719
box-shadow: inset -2px 0 #42A5F5; }
2720
2721
dockoverlayedge.right-edge docktab:hover {
2722
box-shadow: inset 2px 0 alpha(currentColor, 0.3); }
2723
dockoverlayedge.right-edge docktab:checked {
2724
box-shadow: inset 2px 0 #42A5F5; }
2725
2726
pillbox {
2727
background-color: #F5F5F5;
2728
border-radius: 2px; }
2729
2730
buildperspective row {
2731
padding: 10px; }
2732
2733
layoutpane entry.search {
2734
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
2735
background-color: #FFFFFF; }
2736
2737
editortweak entry.search {
2738
margin-bottom: -1px;
2739
box-shadow: none; }
2740
2741
frame.gb-search-frame {
2742
border-bottom-right-radius: 5px; }
2743
2744
.gb-search-entry-occurrences-tag {
2745
box-shadow: none;
2746
background-color: transparent; }
2747
2748
docktabstrip {
2749
min-height: 39px; }
2750
2751
workbench preferences preferencesgroup list entry {
2752
padding-top: 8px;
2753
padding-bottom: 8px; }
2754
2755
/**********
2756
* Photos *
2757
**********/
2758
GdMainIconView.content-view {
2759
-GdMainIconView-icon-size: 48; }
2760
2761
.documents-counter {
2762
margin: 8px;
2763
border-radius: 9999px;
2764
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
2765
background-color: #FF4081;
2766
color: #FFFFFF;
2767
font-weight: bold; }
2768
2769
.documents-scrolledwin.frame {
2770
border-style: none; }
2771
2772
.photos-fade-in {
2773
opacity: 1;
2774
transition: opacity 0.2s cubic-bezier(0, 0, 0.2, 1); }
2775
2776
.photos-fade-out {
2777
opacity: 0;
2778
transition: opacity 0.2s cubic-bezier(0, 0, 0.2, 1); }
2779
2780
overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) {
2781
border-style: none none none solid; }
2782
overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) {
2783
border-style: none solid none none; }
2784
2785
/*********
2786
* Music *
2787
*********/
2788
.side-panel:dir(ltr) {
2789
border-style: solid;
2790
border-color: rgba(0, 0, 0, 0.1); }
2791
2792
.side-panel:dir(rtl) {
2793
border-style: solid;
2794
border-color: rgba(0, 0, 0, 0.1); }
2795
2796
.side-panel .view, .side-panel iconview {
2797
background-image: image(#FAFAFA); }
2798
.side-panel .view:hover, .side-panel iconview:hover {
2799
background-image: image(rgba(242, 242, 242, 0.99)); }
2800
2801
.side-panel .view:selected, .side-panel iconview:selected {
2802
background-image: image(#42A5F5); }
2803
.side-panel .view:selected:hover, .side-panel iconview:selected:hover {
2804
background-image: image(#4baaf6); }
2805
2806
.songs-list:hover {
2807
background-image: image(alpha(currentColor, 0.05)); }
2808
2809
frame.documents-dropdown {
2810
margin: 8px; }
2811
frame.documents-dropdown > border {
2812
border: none; }
2813
2814
box.vertical:not(.titlebar) > revealer > toolbar.search-bar {
2815
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
2816
box.vertical:not(.titlebar) > revealer > toolbar.search-bar button > widget {
2817
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
2818
2819
/*********
2820
* To Do *
2821
*********/
2822
task-row {
2823
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
2824
margin: 0 -4px; }
2825
task-row:hover {
2826
transition: none; }
2827
task-row label {
2828
margin: 0 8px; }
2829
task-row image {
2830
margin: 0 4px; }
2831
2832
task-list-view > box > revealer > box > button {
2833
min-height: 32px;
2834
margin: -4px;
2835
padding: 0 12px; }
2836
task-list-view > box > revealer > box > button label {
2837
margin: 0 8px; }
2838
task-list-view > box > revealer > box > button image {
2839
margin: 0 4px; }
2840
2841
/*******
2842
* eog *
2843
*******/
2844
#eog-thumb-nav scrolledwindow {
2845
border-top: none; }
2846
#eog-thumb-nav button {
2847
-gtk-outline-radius: 2px; }
2848
2849
/*************
2850
* Evolution *
2851
*************/
2852
frame.taskbar > border {
2853
border-style: solid none none; }
2854
2855
box.vertical > paned.horizontal notebook widget .frame {
2856
border-style: none; }
2857
2858
/********
2859
* gitg *
2860
********/
2861
frame.commit-frame > border {
2862
border-style: solid none none; }
2863
2864
/**************
2865
* Characters *
2866
**************/
2867
box.dialog-vbox scrolledwindow.related {
2868
border: 1px solid rgba(0, 0, 0, 0.1); }
2869
2870
list.categories {
2871
background-image: image(#FAFAFA); }
2872
2873
/**************
2874
* Calculator *
2875
**************/
2876
button.title label {
2877
min-height: 32px; }
2878
2879
/************
2880
* Terminix *
2881
************/
2882
.terminix-background box.vertical > widget > box.horizontal {
2883
padding: 3px 0 2px; }
2884
.terminix-background box.vertical > widget > box.horizontal button {
2885
padding: 4px 8px; }
2886
.terminix-background box.vertical > widget > box.horizontal button.image-button {
2887
padding: 4px; }
2888
2889
.terminix-background revealer > frame > border {
2890
border-style: none; }
2891
2892
button.image-button.session-new-button {
2893
min-width: 28px; }
2894
2895
overlay > revealer.left > scrolledwindow.frame,
2896
overlay > revealer.right > scrolledwindow.frame {
2897
border-style: none;
2898
box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); }
2899
2900
overlay > revealer.left > scrolledwindow.frame {
2901
margin-right: 32px; }
2902
2903
overlay > revealer.right > scrolledwindow.frame {
2904
margin-left: 32px; }
2905
2906
.terminix-session-sidebar {
2907
background-image: image(#FAFAFA); }
2908
2909
/***********
2910
* Eclipse *
2911
***********/
2912
window.background > box.vertical > scrolledwindow > widget toolbar {
2913
padding: 2px; }
2914
window.background > box.vertical > scrolledwindow > widget toolbar separator,
2915
window.background > box.vertical > scrolledwindow > widget toolbar button {
2916
margin: 2px; }
2917
window.background > box.vertical > scrolledwindow > widget toolbar button {
2918
border-radius: 2px; }
2919
2920
/***********
2921
* Firefox *
2922
***********/
2923
window.background > widget > menubar {
2924
color: rgba(255, 255, 255, 0.75); }
2925
window.background > widget > menubar:hover {
2926
color: #FFFFFF; }
2927
window.background > widget > menubar:disabled {
2928
color: rgba(255, 255, 255, 0.3); }
2929
2930
window.background > menu > menuitem > label:disabled {
2931
color: rgba(0, 0, 0, 0.32); }
2932
2933
window.background > window.background > menu > separator {
2934
color: rgba(0, 0, 0, 0.1); }
2935
2936
window.background > widget > frame {
2937
color: rgba(0, 0, 0, 0.2); }
2938
2939
window.background > widget > checkbutton > check,
2940
window.background > widget > radiobutton > radio {
2941
margin: 0;
2942
padding: 0; }
2943
2944
window.background > widget > radiobutton > radio:checked {
2945
-gtk-icon-source: image(-gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")), -gtk-recolor(url("assets/scalable/radio-checked-symbolic.png")));
2946
border-image: none; }
2947
2948
/***********
2949
* Synapse *
2950
***********/
2951
window.background > box.vertical > widget > widget:selected {
2952
background-color: #42A5F5; }
2953
2954
/*********
2955
* Unity *
2956
*********/
2957
UnityDecoration {
2958
-UnityDecoration-extents: 28px 0 0 0;
2959
-UnityDecoration-input-extents: 8px;
2960
-UnityDecoration-shadow-offset-x: 0;
2961
-UnityDecoration-shadow-offset-y: 3px;
2962
-UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48);
2963
-UnityDecoration-active-shadow-radius: 18px;
2964
-UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32);
2965
-UnityDecoration-inactive-shadow-radius: 6px;
2966
-UnityDecoration-glow-size: 8px;
2967
-UnityDecoration-glow-color: #42A5F5;
2968
-UnityDecoration-title-indent: 4px;
2969
-UnityDecoration-title-fade: 32px;
2970
-UnityDecoration-title-alignment: 0.0; }
2971
2972
UnityDecoration .top {
2973
padding: 0 2px;
2974
border-style: none;
2975
border-radius: 2px 2px 0 0;
2976
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
2977
background-color: #37474F;
2978
color: #FFFFFF; }
2979
2980
UnityDecoration .top:backdrop {
2981
color: rgba(255, 255, 255, 0.75); }
2982
2983
UnityDecoration .menuitem {
2984
color: alpha(currentColor, 0.75); }
2985
2986
UnityDecoration .menuitem:hover {
2987
box-shadow: inset 0 -2px currentColor;
2988
background-color: transparent;
2989
color: currentColor; }
2990
2991
.background:not(.csd) headerbar:not(.titlebar) {
2992
border-radius: 0;
2993
box-shadow: none; }
2994
.background:not(.csd) headerbar:not(.titlebar).inline-toolbar {
2995
border-style: none; }
2996
2997
UnityPanelWidget,
2998
.unity-panel {
2999
background-color: #263238;
3000
background-image: image(#263238);
3001
color: #FFFFFF; }
3002
3003
UnityPanelWidget:backdrop,
3004
.unity-panel:backdrop {
3005
color: rgba(255, 255, 255, 0.75); }
3006
3007
.unity-panel.menuitem,
3008
.unity-panel .menuitem {
3009
color: alpha(currentColor, 0.75); }
3010
3011
.unity-panel.menubar.menuitem:hover,
3012
.unity-panel.menubar .menuitem *:hover {
3013
box-shadow: inset 0 -2px currentColor;
3014
background-color: transparent;
3015
color: currentColor; }
3016
3017
@keyframes playbackmenuitem_spinner {
3018
to {
3019
-gtk-icon-transform: rotate(1turn); } }
3020
.menu IdoPlaybackMenuItem.menuitem:active {
3021
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
3022
animation: playbackmenuitem_spinner 1s infinite linear;
3023
color: #42A5F5; }
3024
3025
/**************
3026
* Mate-Panel *
3027
**************/
3028
.mate-panel-menu-bar menubar,
3029
#PanelApplet-window-menu-applet-button {
3030
background-color: transparent; }
3031
3032
#PanelPlug,
3033
PanelToplevel.background {
3034
background-color: #263238;
3035
color: #FFFFFF;
3036
font-weight: 500; }
3037
3038
PanelToplevel > widget > button {
3039
padding: 0 4px;
3040
border-radius: 0; }
3041
3042
PanelSeparator {
3043
color: rgba(0, 0, 0, 0.1); }
3044
3045
MatePanelAppletFrameDBus {
3046
border-style: solid;
3047
border-width: 0 1px;
3048
border-color: rgba(0, 0, 0, 0.1); }
3049
3050
.mate-panel-menu-bar menubar menuitem {
3051
padding: 4px; }
3052
3053
.mate-panel-menu-bar menubar menu menuitem {
3054
padding: 6px; }
3055
3056
.mate-panel-menu-bar #PanelApplet button {
3057
-GtkWidget-window-dragging: true;
3058
padding: 4px;
3059
border-radius: 0; }
3060
3061
PanelApplet.wnck-applet .wnck-pager {
3062
background-color: transparent;
3063
color: #40C4FF; }
3064
PanelApplet.wnck-applet .wnck-pager:hover {
3065
background-color: alpha(currentColor, 0.15); }
3066
PanelApplet.wnck-applet .wnck-pager:active {
3067
background-color: alpha(currentColor, 0.3); }
3068
PanelApplet.wnck-applet .wnck-pager:selected {
3069
background-color: #42A5F5; }
3070
3071
#MatePanelPopupWindow {
3072
border: 1px solid rgba(0, 0, 0, 0.1);
3073
border-radius: 3px;
3074
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); }
3075
#MatePanelPopupWindow frame > border {
3076
border-style: none; }
3077
#MatePanelPopupWindow ClockMap {
3078
border: 1px solid rgba(0, 0, 0, 0.1); }
3079
3080
na-tray-applet {
3081
-NaTrayApplet-icon-padding: 3px;
3082
-NaTrayApplet-icon-size: 16; }
3083
3084
.mate-panel-menu-bar {
3085
-PanelMenuBar-icon-visible: true; }
3086
3087
.mate-panel-applet-slider {
3088
background: transparent; }
3089
.mate-panel-applet-slider frame {
3090
border: 1px solid rgba(0, 0, 0, 0.1);
3091
border-radius: 3px;
3092
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
3093
background-color: #F5F5F5; }
3094
.mate-panel-applet-slider frame frame {
3095
all: unset; }
3096
.mate-panel-applet-slider frame > border {
3097
border-style: none; }
3098
3099
/*********************
3100
* CAJA File manager *
3101
*********************/
3102
.caja-navigation-window button.toggle.image-button {
3103
border-radius: 2px; }
3104
3105
.caja-pathbar button {
3106
margin: 0 -1px 0 -2px; }
3107
3108
.caja-pathbar button > widget {
3109
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
3110
-GtkArrow-arrow-scaling: 1; }
3111
3112
.caja-side-pane notebook viewport.frame,
3113
.caja-side-pane notebook widget .vertical {
3114
background-color: #FFFFFF; }
3115
3116
.caja-side-pane notebook .frame,
3117
.caja-notebook .frame {
3118
border-style: none; }
3119
3120
.caja-side-pane notebook,
3121
.caja-notebook {
3122
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3123
3124
.caja-navigation-window statusbar {
3125
margin: 0 -10px;
3126
padding: 0 4px;
3127
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3128
3129
.caja-notebook frame > border {
3130
border-style: none; }
3131
3132
#caja-extra-view-widget {
3133
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3134
background-color: #F5F5F5; }
3135
#caja-extra-view-widget > box > box > label {
3136
font-weight: bold; }
3137
3138
/*********
3139
* Pluma *
3140
*********/
3141
.pluma-window statusbar {
3142
margin: 0 -10px;
3143
padding: 0 4px;
3144
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3145
3146
.pluma-window statusbar frame > border {
3147
border-style: none; }
3148
3149
.pluma-window statusbar frame button.flat {
3150
padding: 0 4px;
3151
border-radius: 0; }
3152
3153
.pluma-window statusbar frame button.flat widget {
3154
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
3155
-GtkArrow-arrow-scaling: 1; }
3156
3157
.pluma-print-preview toolbar {
3158
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
3159
3160
.pluma-window paned.horizontal box.vertical box.horizontal button.flat {
3161
margin: 1px; }
3162
3163
.pluma-window paned.horizontal box.vertical .frame {
3164
border-style: none; }
3165
3166
.pluma-window paned.horizontal box.vertical notebook.frame {
3167
margin-top: -1px;
3168
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3169
3170
.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal {
3171
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
3172
3173
/*********
3174
* Atril *
3175
*********/
3176
.atril-window paned.horizontal box.vertical .frame {
3177
border-style: none; }
3178
3179
.atril-window paned.horizontal box.vertical notebook .frame {
3180
border-top: 1px solid rgba(0, 0, 0, 0.1); }
3181
3182
/* mate-screensaver lock dialog */
3183
.lock-dialog {
3184
border-radius: 2px;
3185
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); }
3186
.lock-dialog frame > border {
3187
border-style: none; }
3188
3189
/************************
3190
* LightDM GTK+ Greeter *
3191
************************/
3192
#panel_window {
3193
background-color: rgba(0, 0, 0, 0.3); }
3194
3195
#panel_window menubar,
3196
#panel_window separator {
3197
background-color: transparent; }
3198
3199
#panel_window menubar > menuitem {
3200
color: rgba(255, 255, 255, 0.75); }
3201
#panel_window menubar > menuitem:hover {
3202
color: #FFFFFF; }
3203
#panel_window menubar > menuitem:disabled {
3204
color: rgba(255, 255, 255, 0.3); }
3205
3206
#login_window,
3207
#shutdown_dialog,
3208
#restart_dialog {
3209
margin: 8px;
3210
border-radius: 2px;
3211
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);
3212
background-color: #FAFAFA; }
3213
3214
#content_frame {
3215
padding-bottom: 20px;
3216
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
3217
3218
#buttonbox_frame {
3219
padding-top: 24px; }
3220
#buttonbox_frame button {
3221
margin: -16px; }
3222
3223
#greeter_infobar {
3224
margin-top: -1px; }
3225
3226
/* GTK NAMED COLORS
3227
----------------
3228
use responsibly! */
3229
/*
3230
widget text/foreground color */
3231
@define-color theme_fg_color rgba(0, 0, 0, 0.8);
3232
/*
3233
text color for entries, views and content in general */
3234
@define-color theme_text_color rgba(0, 0, 0, 0.8);
3235
/*
3236
widget base background color */
3237
@define-color theme_bg_color #F5F5F5;
3238
/*
3239
text widgets and the like base background color */
3240
@define-color theme_base_color #FFFFFF;
3241
/*
3242
base background color of selections */
3243
@define-color theme_selected_bg_color #42A5F5;
3244
/*
3245
text/foreground color of selections */
3246
@define-color theme_selected_fg_color #FFFFFF;
3247
/*
3248
base background color of insensitive widgets */
3249
@define-color insensitive_bg_color #F5F5F5;
3250
/*
3251
text foreground color of insensitive widgets */
3252
@define-color insensitive_fg_color rgba(0, 0, 0, 0.32);
3253
/*
3254
insensitive text widgets and the like base background color */
3255
@define-color insensitive_base_color #FAFAFA;
3256
/*
3257
widget text/foreground color on backdrop windows */
3258
@define-color theme_unfocused_fg_color rgba(0, 0, 0, 0.8);
3259
/*
3260
text color for entries, views and content in general on backdrop windows */
3261
@define-color theme_unfocused_text_color rgba(0, 0, 0, 0.8);
3262
/*
3263
widget base background color on backdrop windows */
3264
@define-color theme_unfocused_bg_color #F5F5F5;
3265
/*
3266
text widgets and the like base background color on backdrop windows */
3267
@define-color theme_unfocused_base_color #FFFFFF;
3268
/*
3269
base background color of selections on backdrop windows */
3270
@define-color theme_unfocused_selected_bg_color #42A5F5;
3271
/*
3272
text/foreground color of selections on backdrop windows */
3273
@define-color theme_unfocused_selected_fg_color #FFFFFF;
3274
/*
3275
insensitive color on backdrop windows */
3276
@define-color unfocused_insensitive_color rgba(0, 0, 0, 0.32);
3277
/*
3278
widgets main borders color */
3279
@define-color borders rgba(0, 0, 0, 0.1);
3280
/*
3281
widgets main borders color on backdrop windows */
3282
@define-color unfocused_borders rgba(0, 0, 0, 0.1);
3283
/*
3284
these are pretty self explicative */
3285
@define-color warning_color #FF6D00;
3286
@define-color error_color #DD2C00;
3287
@define-color success_color #00C853;
3288
/*
3289
FIXME this is really an API */
3290
@define-color content_view_bg #FFFFFF;
3291
@define-color placeholder_text_color rgba(128, 128, 128, 0.88);
3292