A fork of the Materia GTK theme.

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

 gtk.css

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