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.

 _common.scss

View raw Download
text/plain • 51.09 kiB
ASCII text
        
            
1
//This is the RIGHT PLACE to edit the stylesheet
2
3
//let's start by telling people not to edit the generated CSS:
4
$cakeisalie: "This stylesheet is generated, DO NOT EDIT";
5
/* #{$cakeisalie} */
6
7
/* Copyright 2009, 2015 Red Hat, Inc.
8
*
9
* Portions adapted from Mx's data/style/default.css
10
* Copyright 2009 Intel Corporation
11
*
12
* This program is free software; you can redistribute it and/or modify it
13
* under the terms and conditions of the GNU Lesser General Public License,
14
* version 2.1, as published by the Free Software Foundation.
15
*
16
* This program is distributed in the hope it will be useful, but WITHOUT ANY
17
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
19
* more details.
20
*
21
* You should have received a copy of the GNU Lesser General Public License
22
* along with this program; if not, write to the Free Software Foundation,
23
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
24
*/
25
26
27
/* GLOBALS */
28
* {
29
// transition-timing-function: $deceleration_curve;
30
transition-duration: $longer_duration;
31
}
32
33
stage {
34
font-family: $font-family;
35
@include font(body-1);
36
color: $fg_color;
37
}
38
39
/* WIDGETS */
40
41
/* Buttons */
42
.button {
43
min-height: $medium_size;
44
padding: 0 16px;
45
border-width: 0;
46
border-radius: 2px;
47
@include font(button);
48
@include button(flat-normal);
49
&:hover { @include button(flat-hover); }
50
&:active { @include button(flat-active); }
51
&:insensitive { @include button(flat-insensitive); }
52
&:focus { @include button(flat-focus); }
53
54
}
55
56
.modal-dialog-linked-button {
57
min-height: 40px;
58
padding: 0 16px;
59
border-top: 1px solid $border_color !important;
60
border-right-width: 0;
61
@include font(button);
62
@include button(flat-normal);
63
&:hover { @include button(flat-hover); }
64
&:active { @include button(flat-active); }
65
&:insensitive { @include button(flat-insensitive); }
66
&:focus { @include button(flat-focus); }
67
68
&:first-child {
69
border-radius: 0px 0px 0px 2px;
70
}
71
&:last-child {
72
border-right-width: 0px;
73
border-radius: 0px 0px 2px 0px;
74
}
75
&:first-child:last-child {
76
border-right-width: 0px;
77
border-radius: 0px 0px 2px 2px;
78
}
79
}
80
81
/* Entries */
82
StEntry {
83
min-height: $medium_size;
84
padding: 0 8px;
85
border-radius: 0;
86
border-width: 0;
87
color: $fg_color;
88
selection-background-color: $primary_color;
89
selected-color: $inverse_fg_color;
90
@include font(subheading);
91
@include entry(normal);
92
//&:hover { @include entry(hover);}
93
&:focus { @include entry(focus);}
94
&:insensitive { @include entry(insensitive);}
95
StIcon.capslock-warning {
96
icon-size: 16px;
97
warning-color: $warning_color;
98
padding: 0 0;
99
}
100
}
101
102
103
/* Scrollbars */
104
105
StScrollView {
106
&.vfade { -st-vfade-offset: 32px; }
107
&.hfade { -st-hfade-offset: 32px; }
108
}
109
110
StScrollBar {
111
padding: 0;
112
113
StScrollView & {
114
min-width: 16px;
115
min-height: 16px;
116
}
117
118
StBin#trough {
119
margin: 4px;
120
border-radius: 100px;
121
background-color: $divider_color;
122
}
123
124
StButton#vhandle, StButton#hhandle {
125
border-radius: 100px;
126
background-color: $tertiary_fg_color;
127
//border: 4px solid transparent; //would be nice to margin or at least to transparent
128
margin: 4px;
129
&:hover { background-color: $secondary_fg_color; }
130
&:active { background-color: $fg_color; }
131
}
132
}
133
134
%overview_scrollbar {
135
StBin#trough {
136
background-color: $inverse_divider_color;
137
}
138
139
StButton#vhandle, StButton#hhandle {
140
background-color: $tertiary_inverse_fg_color;
141
&:hover { background-color: $secondary_inverse_fg_color; }
142
&:active { background-color: $inverse_fg_color; }
143
}
144
}
145
146
/* Slider */
147
148
.slider {
149
height: 20px;
150
color: $accent_color;
151
-slider-height: 2px;
152
-slider-background-color: $track_color; //background of the trough
153
-slider-border-color: transparent; //trough border color
154
-slider-active-background-color: $accent_color; //active trough fill
155
-slider-active-border-color: transparent; //active trough border
156
-slider-border-width: 0;
157
-slider-handle-radius: 7px;
158
}
159
160
/* Check Boxes */
161
162
.check-box {
163
* {
164
min-height: $medium_size - 8px * 2;
165
padding: 8px 0;
166
}
167
StBoxLayout { spacing: 8px; }
168
StBin {
169
width: 24px;
170
height: 24px;
171
padding: ($medium_size - 24px) / 2;
172
border-radius: 100px;
173
background-image: url("assets/checkbox-off.svg");
174
}
175
&:focus StBin {
176
background-image: url("assets/checkbox-off.svg");
177
}
178
&:hover StBin {
179
background-color: $divider_color;
180
}
181
&:active StBin {
182
background-color: $track_color;
183
}
184
&:checked StBin {
185
background-image: url("assets/checkbox.svg");
186
}
187
&:focus:checked StBin {
188
background-image: url("assets/checkbox.svg");
189
}
190
&:hover:checked StBin {
191
background-color: rgba($accent_color, $lower_opacity / 2);
192
}
193
&:active:checked StBin {
194
background-color: rgba($accent_color, $lower_opacity);
195
}
196
}
197
198
/* Switches */
199
.toggle-switch {
200
width: 40px;
201
height: 20px;
202
background-size: contain;
203
}
204
205
@each $v in us, intl {
206
.toggle-switch-#{$v} {
207
background-image: url("assets/toggle-off.svg");
208
&:checked { background-image: url("assets/toggle-on.svg"); }
209
}
210
}
211
212
/* links */
213
.shell-link {
214
border-radius: 2px;
215
color: $link_color;
216
&:hover {
217
color: $link_color;
218
background-color: rgba($link_color, $lower_opacity / 2);
219
}
220
&:active {
221
color: $link_color;
222
background-color: rgba($link_color, $lower_opacity);
223
}
224
}
225
226
/* Modal Dialogs */
227
228
.headline { @include font(title); }
229
.lightbox { background-color: black; }
230
.flashspot { background-color: white; }
231
232
.modal-dialog {
233
border-radius: 2px;
234
color: $fg_color;
235
background-color: $base_color;
236
border: none;
237
box-shadow: $shadow_4;
238
.modal-dialog-content-box {
239
padding: 24px;
240
}
241
.run-dialog-entry { width: 20em; margin-bottom: 6px; }
242
.run-dialog-error-box {
243
padding-top: 16px;
244
spacing: 6px;
245
}
246
.run-dialog-button-box { padding-top: 1em; }
247
.run-dialog-label {
248
font-size: 1em;
249
font-weight: normal;
250
color: $tertiary_fg_color;
251
padding-bottom: .4em;
252
}
253
254
}
255
256
.show-processes-dialog-subject,
257
.mount-question-dialog-subject,
258
.end-session-dialog-subject { //this should be a generic header class
259
@include font(title);
260
}
261
262
/* End Session Dialog */
263
.end-session-dialog {
264
spacing: 42px;
265
border: none;
266
}
267
268
.end-session-dialog-list {
269
padding-top: 20px;
270
}
271
272
.end-session-dialog-layout {
273
padding-left: 17px;
274
&:rtl { padding-right: 17px; }
275
}
276
277
.end-session-dialog-description {
278
width: 28em;
279
padding-bottom: 10px;
280
&:rtl {
281
text-align: right;
282
}
283
}
284
285
.end-session-dialog-warning {
286
width: 28em;
287
color: $warning_color;
288
padding-top: 6px;
289
&:rtl {
290
text-align: right;
291
}
292
}
293
294
.end-session-dialog-logout-icon {
295
//border: 2px solid #8b8b8b;
296
border-radius: 5px;
297
width: 48px;
298
height: 48px;
299
background-size: contain;
300
}
301
302
.end-session-dialog-shutdown-icon {
303
color: $tertiary_fg_color;
304
width: 48px;
305
height: 48px;
306
}
307
308
.end-session-dialog-inhibitor-layout {
309
spacing: 16px;
310
max-height: 200px;
311
padding-right: 65px;
312
padding-left: 65px;
313
}
314
315
.end-session-dialog-session-list,
316
.end-session-dialog-app-list {
317
spacing: 1em;
318
}
319
320
.end-session-dialog-list-header {
321
font-weight: bold;
322
&:rtl { text-align: right; }
323
}
324
325
.end-session-dialog-app-list-item,
326
.end-session-dialog-session-list-item {
327
spacing: 1em;
328
}
329
330
.end-session-dialog-app-list-item-name,
331
.end-session-dialog-session-list-item-name {
332
font-weight: bold;
333
}
334
335
.end-session-dialog-app-list-item-description {
336
color: $tertiary_fg_color;
337
font-size: 1em;
338
}
339
340
/* ShellMountOperation Dialogs */
341
.shell-mount-operation-icon { icon-size: 48px; }
342
343
.show-processes-dialog,
344
.mount-question-dialog {
345
spacing: 24px;
346
}
347
348
.show-processes-dialog-subject,
349
.mount-question-dialog-subject {
350
padding-top: 10px;
351
padding-left: 17px;
352
padding-bottom: 6px;
353
}
354
355
.mount-question-dialog-subject {
356
max-width: 500px;
357
}
358
359
.show-processes-dialog-subject:rtl,
360
.mount-question-dialog-subject:rtl {
361
padding-left: 0px;
362
padding-right: 17px;
363
}
364
365
.show-processes-dialog-description,
366
.mount-question-dialog-description {
367
padding-left: 17px;
368
width: 28em;
369
}
370
371
.show-processes-dialog-description:rtl,
372
.mount-question-dialog-description:rtl {
373
padding-right: 17px;
374
}
375
376
.show-processes-dialog-app-list {
377
max-height: 200px;
378
padding-top: 24px;
379
padding-left: 49px;
380
padding-right: 32px;
381
}
382
383
.show-processes-dialog-app-list:rtl {
384
padding-right: 49px;
385
padding-left: 32px;
386
}
387
388
.show-processes-dialog-app-list-item {
389
color: $fg_color;
390
&:hover { color: $fg_color; }
391
&:ltr { padding-right: 1em; }
392
&:rtl { padding-left: 1em; }
393
}
394
395
.show-processes-dialog-app-list-item-icon {
396
&:ltr { padding-right: 17px; }
397
&:rtl { padding-left: 17px; }
398
}
399
400
.show-processes-dialog-app-list-item-name {
401
font-size: 1em;
402
}
403
404
405
/* Password or Authentication Dialog */
406
407
.prompt-dialog {
408
//this is the width of the entire modal popup
409
width: 500px;
410
border: none;
411
}
412
413
.prompt-dialog-main-layout {
414
spacing: 24px;
415
padding: 10px;
416
}
417
418
.prompt-dialog-message-layout {
419
spacing: 16px;
420
}
421
422
.prompt-dialog-headline {
423
@include font(title);
424
color: $fg_color;
425
}
426
427
.prompt-dialog-description:rtl {
428
text-align: right;
429
}
430
431
.prompt-dialog-password-box {
432
spacing: 1em;
433
padding-bottom: 1em;
434
}
435
436
.prompt-dialog-error-label {
437
font-size: 1em;
438
color: $error_color;
439
padding-bottom: 8px;
440
}
441
442
.prompt-dialog-info-label {
443
font-size: 1em;
444
padding-bottom: 8px;
445
}
446
447
.hidden {
448
color: rgba(0,0,0,0);
449
}
450
451
.prompt-dialog-null-label {
452
font-size: 1em;
453
padding-bottom: 8px;
454
}
455
456
457
/* Polkit Dialog */
458
459
.polkit-dialog-user-layout {
460
padding-left: 10px;
461
spacing: 10px;
462
&:rtl {
463
padding-left: 0px;
464
padding-right: 10px;
465
}
466
}
467
468
.polkit-dialog-user-root-label {
469
color: $warning_color;
470
}
471
472
.polkit-dialog-user-icon {
473
border-radius: 5px;
474
background-size: contain;
475
width: 48px;
476
height: 48px;
477
}
478
479
/* Audio selection dialog */
480
.audio-device-selection-dialog {
481
spacing: 30px;
482
}
483
484
.audio-selection-content {
485
spacing: 20px;
486
padding: 24px;
487
}
488
489
.audio-selection-title {
490
font-weight: bold;
491
text-align: center;
492
}
493
494
.audio-selection-box {
495
spacing: 20px;
496
}
497
498
.audio-selection-device {
499
border: 1px solid $border_color;
500
border-radius: 2px;
501
&:active,&:hover,&:focus { background-color: $primary_color; }
502
}
503
504
.audio-selection-device-box {
505
padding: 20px;
506
spacing: 20px;
507
}
508
509
.audio-selection-device-icon {
510
icon-size: 64px;
511
}
512
513
/* Access Dialog */
514
.access-dialog {
515
spacing: 30px;
516
}
517
518
.access-dialog-main-layout {
519
padding: 12px 20px 0;
520
spacing: 12px;
521
}
522
523
.access-dialog-content {
524
max-width: 28em;
525
spacing: 20px;
526
}
527
528
.access-dialog-icon {
529
min-width: 48px;
530
icon-size: 48px;
531
}
532
533
.access-dialog-title {
534
font-weight: bold;
535
}
536
537
.access-dialog-subtitle {
538
color: $tertiary_fg_color;
539
font-weight: bold;
540
}
541
542
/* Geolocation Dialog */
543
.geolocation-dialog {
544
spacing: 30px;
545
}
546
547
.geolocation-dialog-main-layout {
548
spacing: 12px;
549
}
550
551
.geolocation-dialog-content {
552
spacing: 20px;
553
}
554
555
.geolocation-dialog-icon {
556
icon-size: 48px;
557
}
558
559
.geolocation-dialog-title {
560
font-weight: bold;
561
}
562
563
.geolocation-dialog-reason {
564
color: $tertiary_fg_color;
565
font-weight: bold;
566
}
567
568
/* Network Agent Dialog */
569
570
.network-dialog-secret-table {
571
spacing-rows: 15px;
572
spacing-columns: 1em;
573
}
574
575
.keyring-dialog-control-table {
576
spacing-rows: 15px;
577
spacing-columns: 1em;
578
}
579
580
/* Popovers/Menus */
581
582
.popup-menu {
583
min-width: 200px;
584
585
.popup-menu-arrow { } //defined globally in the TOP BAR
586
.popup-sub-menu {
587
background-color: $alt_base_color;
588
box-shadow: $shadow_0;
589
}
590
591
.popup-menu-content { padding: 8px 0; }
592
.popup-menu-item {
593
// min-height: $menuitem_size - 4px * 2;
594
spacing: 8px;
595
transition-duration: $shorter_duration;
596
597
&:ltr { padding: 0.4em 24px 0.4em 0; }
598
&:rtl { padding: 0.4em 0 0.4em 24px; }
599
&:checked {
600
background-color: $primary_color;
601
color: $inverse_fg_color;
602
box-shadow: $shadow_0;
603
font-weight: normal;
604
&.selected {
605
background-color: mix($inverse_fg_color, $primary_color, percentage($lower_opacity / 2));
606
color: $inverse_fg_color;
607
}
608
&:active {
609
background-color: mix($inverse_fg_color, $primary_color, percentage($lower_opacity));
610
color: $inverse_fg_color !important;
611
}
612
&:insensitive { color: $disabled_inverse_fg_color; }
613
}
614
&.selected {
615
background-color: $divider_color;
616
color: $fg_color;
617
transition-duration: 0s;
618
}
619
&:active {
620
background-color: $track_color;
621
color: $fg_color;
622
transition-duration: $longer_duration;
623
}
624
&.selected:active { color: $fg_color; }
625
&:insensitive { color: $disabled_fg_color; }
626
}
627
628
.popup-inactive-menu-item { //all icons and other graphical elements
629
color: $fg_color;
630
631
&:insensitive { color: $tertiary_fg_color; }
632
}
633
//.popup-status-menu-item { font-weight: normal; color: pink; } //dunno what that is
634
&.panel-menu {
635
-boxpointer-gap: 4px;
636
margin-bottom: 1.75em;
637
}
638
}
639
640
641
642
.popup-menu-ornament {
643
text-align: right;
644
width: 16px;
645
height: 16px;
646
}
647
.popup-menu-boxpointer,
648
.candidate-popup-boxpointer {
649
-arrow-border-radius: 0;
650
-arrow-background-color: transparent;
651
-arrow-border-width: 0;
652
-arrow-border-color: transparent;
653
-arrow-base: 0;
654
-arrow-rise: 0;
655
-arrow-box-shadow: none; //dreaming. bug #689995
656
margin: 5px 8px 8px;
657
background-color: $base_color;
658
border-radius: 2px;
659
box-shadow: $shadow_2;
660
}
661
662
.popup-separator-menu-item {
663
//-margin-horizontal: 24px;
664
height: 1px; //not really the whole box
665
margin: 8px 64px - 24px;
666
background-color: transparent;
667
border-color: $border_color;
668
border-bottom-width: 1px;
669
border-bottom-style: solid;
670
}
671
672
673
// Background menu
674
.background-menu { -boxpointer-gap: 4px; -arrow-rise: 0; }
675
676
/* fallback menu
677
- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled
678
app menu inside the main app window itself rather than the top bar
679
*/
680
681
682
/* OSD */
683
.osd-window {
684
text-align: center;
685
font-weight: bold;
686
spacing: 1em;
687
margin: 32px;
688
min-width: 64px;
689
min-height: 64px;
690
691
.osd-monitor-label { @include font(display-2); }
692
.level {
693
height: 0.6em;
694
border-radius: 4px;
695
background-color: $divider_color;
696
color: $fg_color;
697
}
698
.level-bar {
699
background-color: $primary_color;
700
border-radius: 2px;
701
}
702
}
703
704
/* Pad OSD */
705
.pad-osd-window {
706
padding: 32px;
707
background-color: $bg_color;
708
}
709
710
.combo-box-label {
711
width: 15em;
712
}
713
714
/* App Switcher */
715
.switcher-popup {
716
padding: 8px;
717
spacing: 16px;
718
}
719
720
.osd-window,
721
.resize-popup,
722
.switcher-list {
723
@extend %osd-panel;
724
}
725
726
.switcher-list-item-container { spacing: 8px; }
727
728
.switcher-list .item-box {
729
padding: 8px;
730
border-radius: 2px;
731
}
732
733
.switcher-list .item-box:outlined {
734
padding: 8px;
735
border: none;
736
background-color: $divider_color;
737
}
738
739
.switcher-list .item-box:selected {
740
background-color: $primary_color;
741
color: $inverse_fg_color;
742
}
743
744
.switcher-list .thumbnail-box {
745
padding: 2px;
746
spacing: 4px;
747
}
748
749
.switcher-list .thumbnail {
750
width: 256px;
751
}
752
753
.switcher-list .separator {
754
width: 1px;
755
background: $border_color;
756
}
757
758
.switcher-arrow {
759
border-color: rgba(0,0,0,0);
760
color: $tertiary_fg_color;
761
&:highlighted {
762
color: $fg_color;
763
}
764
}
765
766
.input-source-switcher-symbol {
767
@include font(display-2);
768
width: 96px;
769
height: 96px;
770
}
771
772
/* Window Cycler */
773
.cycler-highlight { border: 4px solid $primary_color; }
774
775
/* Workspace Switcher */
776
.workspace-switcher-group { padding: 8px; }
777
778
.workspace-switcher-container {
779
@extend %osd-panel;
780
}
781
782
.workspace-switcher {
783
background: transparent;
784
border: 0px;
785
border-radius: 0px;
786
padding: 0px;
787
spacing: 8px;
788
}
789
790
.ws-switcher-active-up, .ws-switcher-active-down {
791
height: 48px;
792
background-color: $primary_color;
793
color: $inverse_fg_color;
794
background-size: 32px;
795
border-radius: 2px;
796
}
797
798
.ws-switcher-box {
799
height: 48px;
800
border: none;
801
background: $divider_color;
802
border-radius: 2px;
803
}
804
805
%osd-panel {
806
color: $fg_color;
807
background-color: $base_color;
808
border: none;
809
box-shadow: $shadow_4;
810
border-radius: 2px;
811
padding: 12px;
812
}
813
814
/* Tiled window previews */
815
.tile-preview {
816
background-color: rgba($alt_primary_color, $lower_opacity);
817
border: 1px solid $alt_primary_color;
818
}
819
820
.tile-preview-left.on-primary {
821
border-radius: $panel-corner-radius $panel-corner-radius 0 0;
822
}
823
824
.tile-preview-right.on-primary {
825
border-radius: 0 $panel-corner-radius 0 0;
826
}
827
828
.tile-preview-left.tile-preview-right.on-primary {
829
border-radius: $panel-corner-radius $panel-corner-radius 0 0;
830
}
831
832
/* TOP BAR */
833
834
#panel {
835
background-color: $panel_bg_color;
836
font-weight: bold;
837
height: $menuitem_size;
838
839
&:overview,
840
&.unlock-screen,
841
&.login-screen,
842
&.lock-screen {
843
background-color: transparent;
844
}
845
846
#panelLeft, #panelCenter { // spacing between activities<>app menu and such
847
spacing: 0;
848
}
849
850
.panel-corner {
851
-panel-corner-radius: $panel-corner-radius;
852
-panel-corner-background-color: $bg_color;
853
-panel-corner-border-width: 2px;
854
-panel-corner-border-color: transparent;
855
856
&:active, &:overview, &:focus {
857
-panel-corner-border-color: $inverse_fg_color;
858
}
859
860
&.lock-screen, &.login-screen, &.unlock-screen {
861
-panel-corner-radius: 0;
862
-panel-corner-background-color: transparent;
863
-panel-corner-border-color: transparent;
864
}
865
}
866
867
.panel-button {
868
-natural-hpadding: 12px;
869
-minimum-hpadding: 6px;
870
font-weight: bold;
871
color: $secondary_inverse_fg_color;
872
transition-duration: $longer_duration;
873
874
.app-menu-icon {
875
-st-icon-style: symbolic;
876
margin-left: 4px;
877
margin-right: 4px;
878
//dimensions of the icon are hardcoded
879
}
880
881
&:hover {
882
color: $inverse_fg_color;
883
}
884
885
&:active, &:overview, &:focus, &:checked {
886
// Trick due to St limitations. It needs a background to draw
887
// a box-shadow
888
background-color: rgba($bg_color, 0.01);
889
box-shadow: inset 0 -2px 0px $inverse_fg_color;
890
color: $inverse_fg_color;
891
892
& > .system-status-icon { icon-shadow: none; }
893
}
894
895
.system-status-icon { icon-size: em(16px); padding: 0 4px; }
896
.unlock-screen &,
897
.login-screen &,
898
.lock-screen & {
899
color: $secondary_inverse_fg_color;
900
&:focus, &:hover, &:active { color: $inverse_fg_color; }
901
}
902
}
903
904
.panel-status-indicators-box,
905
.panel-status-menu-box {
906
spacing: 2px;
907
}
908
909
// spacing between power icon and (optional) percentage label
910
.power-status.panel-status-indicators-box {
911
spacing: 0;
912
}
913
914
.screencast-indicator { color: $warning_color; }
915
}
916
917
// calendar popover
918
#calendarArea {
919
padding: 8px 16px;
920
}
921
922
.calendar {
923
margin-bottom: 0;
924
}
925
926
.calendar,
927
.datemenu-today-button,
928
.datemenu-displays-box,
929
.message-list-sections {
930
margin: 0 8px;
931
}
932
933
.datemenu-calendar-column { spacing: 8px; }
934
.datemenu-displays-section { padding-bottom: 0; }
935
936
.datemenu-today-button,
937
.world-clocks-button,
938
.message-list-section-title {
939
min-height: $menuitem_size - 4px * 2;
940
padding: 4px 8px;
941
border-radius: 2px;
942
}
943
944
.datemenu-today-button {
945
min-height: $menuitem_size * 2 - 4px * 2;
946
}
947
948
.message-list-section-list:ltr {
949
padding-left: 0;
950
}
951
952
.message-list-section-list:rtl {
953
padding-right: 0;
954
}
955
956
.datemenu-today-button,
957
.world-clocks-button,
958
.message-list-section-title {
959
&:hover,&:focus { color: $fg_color; background-color: $divider_color; }
960
&:active {
961
color: $fg_color;
962
background-color: $track_color;
963
}
964
}
965
966
.datemenu-today-button .day-label {
967
}
968
969
.datemenu-today-button .date-label {
970
@include font(headline);
971
}
972
973
.world-clocks-header,
974
.message-list-section-title {
975
color: $secondary_fg_color;
976
font-weight: bold;
977
}
978
979
.world-clocks-grid {
980
spacing-rows: 0.4em;
981
}
982
983
.calendar-month-label {
984
height: $menuitem_size - 6px * 2;
985
margin: 2px;
986
padding: 6px 16px;
987
border-radius: 2px;
988
color: $fg_color;
989
font-weight: bold;
990
text-align: center;
991
&:focus { background-color: $divider_color; }
992
}
993
994
.pager-button {
995
width: $menuitem_size;
996
height: $menuitem_size;
997
margin: 2px;
998
border-radius: 100px;
999
background-color: transparent;
1000
color: $fg_color;
1001
&:hover, &:focus { background-color: $divider_color; }
1002
&:active { background-color: $track_color; }
1003
}
1004
1005
.calendar-change-month-back { //arrow back
1006
background-image: url("assets/calendar-arrow-left.svg");
1007
&:rtl { background-image: url("assets/calendar-arrow-right.svg"); }
1008
}
1009
.calendar-change-month-forward { //arrow foreward
1010
background-image: url("assets/calendar-arrow-right.svg");
1011
&:rtl { background-image: url("assets/calendar-arrow-left.svg"); }
1012
}
1013
1014
.calendar-day-base {
1015
@include font(caption);
1016
text-align: center;
1017
width: $menuitem_size; height: $menuitem_size;
1018
padding: 0;
1019
margin: 2px;
1020
border-radius: 100px;
1021
&:hover,&:focus { background-color: $divider_color; }
1022
// &:active { background-color: $track_color; }
1023
&:active, &:selected {
1024
color: $inverse_fg_color;
1025
background-color: $primary_color !important;
1026
border-color: transparent; //avoid jumparound due to today
1027
}
1028
&.calendar-day-heading { //day of week heading
1029
width: $menuitem_size; height: $menuitem_size - 7px;
1030
margin-top: 2px;
1031
padding: 7px 0 0;
1032
border-radius: 100px;
1033
background-color: transparent;
1034
color: $tertiary_fg_color;
1035
@include font(caption);
1036
font-weight: bold;
1037
text-align: center;
1038
}
1039
}
1040
.calendar-day { //border collapse hack - see calendar.js
1041
border-width: 0;
1042
}
1043
.calendar-day-top { border-top-width: 0; }
1044
.calendar-day-left { border-left-width: 0; }
1045
.calendar-work-day {
1046
1047
}
1048
.calendar-nonwork-day {
1049
color: $fg_color;
1050
}
1051
.calendar-today {
1052
font-weight: bold !important;
1053
//color: $fg_color;
1054
//background-color: transparent;
1055
border: none;
1056
}
1057
.calendar-day-with-events {
1058
color: $link_color;
1059
font-weight: normal;
1060
text-decoration: underline;
1061
background-image: none;
1062
}
1063
.calendar-other-month-day {
1064
color: $disabled_secondary_fg_color;
1065
opacity: 0.5;
1066
}
1067
.calendar-week-number {
1068
width: $menuitem_size; height: $menuitem_size - 7px;
1069
margin: 2px;
1070
padding: 7px 0 0;
1071
border-radius: 100px;
1072
background-color: transparent;
1073
color: $tertiary_fg_color;
1074
font-size: inherit;
1075
font-weight: bold;
1076
text-align: center;
1077
}
1078
1079
/* Message list */
1080
.message-list {
1081
width: 420px;
1082
}
1083
1084
.message-list-sections {
1085
spacing: 8px;
1086
}
1087
1088
.message-list-section,
1089
.message-list-section-list {
1090
spacing: 8px;
1091
}
1092
1093
.message-list-section-title-box {
1094
spacing: 8px;
1095
}
1096
1097
.message-list-section-close > StIcon {
1098
icon-size: 16px;
1099
border-radius: 16px;
1100
padding: ($menuitem_size - 16px) / 2;
1101
color: $secondary_fg_color;
1102
background-color: transparent;
1103
}
1104
1105
/* FIXME: how do you do this in sass? */
1106
.message-list-section-close:hover > StIcon,
1107
.message-list-section-close:focus > StIcon {
1108
color: $fg_color;
1109
background-color: $divider_color;
1110
}
1111
1112
.message-list-section-close:active > StIcon {
1113
color: $fg_color;
1114
background-color: $track_color;
1115
}
1116
1117
.message {
1118
min-height: $menuitem_size * 2;
1119
background-color: transparent;
1120
&:hover,&:focus { background-color: $divider_color; }
1121
&:active { background-color: $track_color; }
1122
border-radius: 2px;
1123
}
1124
1125
.message-icon-bin {
1126
padding: 8px 0px 8px 8px;
1127
&:rtl { padding: 8px 8px 8px 0px; }
1128
}
1129
1130
.message-icon-bin > StIcon {
1131
icon-size: 32px;
1132
}
1133
1134
.message-secondary-bin {
1135
&:ltr { padding-left: 8px; }
1136
&:rtl { padding-right: 8px; }
1137
}
1138
1139
.message-secondary-bin {
1140
color: $secondary_fg_color;
1141
}
1142
1143
.message-secondary-bin > StIcon {
1144
icon-size: 16px;
1145
}
1146
1147
.message-title {
1148
min-height: $small_size - 2px;
1149
padding-top: 2px;
1150
color: $fg_color;
1151
font-weight: bold;
1152
font-size: 1em;
1153
}
1154
1155
.message-content {
1156
min-height: $menuitem_size * 2 - 8px * 2;
1157
padding: 8px;
1158
color: $secondary_fg_color;
1159
font-size: 1em;
1160
}
1161
1162
.message-content * > StIcon {
1163
icon-size: 16px;
1164
border-radius: 16px;
1165
padding: ($small_size - 16px) / 2;
1166
color: $secondary_fg_color;
1167
}
1168
1169
/* FIXME: how do you do this in sass? */
1170
.message-content *:hover > StIcon,
1171
.message-content *:focus > StIcon {
1172
color: $fg_color;
1173
background-color: $divider_color;
1174
}
1175
1176
.message-content *:active > StIcon {
1177
color: $fg_color;
1178
background-color: $track_color;
1179
}
1180
1181
.message-media-control {
1182
margin: 16px 0;
1183
padding: 8px;
1184
border-radius: 100px;
1185
color: $secondary_fg_color;
1186
&:hover,&:focus { color: $fg_color; background-color: $divider_color; }
1187
&:active { color: $fg_color; background-color: $track_color; }
1188
&:insensitive { color: $disabled_secondary_fg_color; }
1189
1190
&:last-child:ltr { margin-right: 16px; padding-right: 8px; }
1191
&:last-child:rtl { margin-left: 16px; padding-left: 8px; }
1192
}
1193
1194
.media-message-cover-icon {
1195
icon-size: 32px;
1196
&.fallback {
1197
icon-size: 16px;
1198
padding: 8px;
1199
border: none;
1200
border-radius: 2px;
1201
background-color: $divider_color;
1202
color: $tertiary_fg_color;
1203
}
1204
}
1205
1206
1207
// a little unstructured mess:
1208
1209
.system-switch-user-submenu-icon.user-icon {
1210
icon-size: 20px;
1211
padding: 0 2px;
1212
}
1213
.system-switch-user-submenu-icon.default-icon {
1214
icon-size: 16px;
1215
padding: 0 4px;
1216
}
1217
1218
#appMenu {
1219
spinner-image: url("process-working.svg");
1220
spacing: 4px;
1221
1222
.label-shadow { color: transparent; }
1223
}
1224
1225
.aggregate-menu {
1226
min-width: 280px;
1227
.popup-menu-icon { padding: 0 4px; }
1228
}
1229
1230
.system-menu-action {
1231
color: $secondary_fg_color;
1232
border-radius: 100px; /* wish we could do 50% */
1233
padding: ($large_size - 16px) / 2;
1234
border: none;
1235
1236
&:hover, &:focus {
1237
background-color: $divider_color;
1238
color: $fg_color;
1239
border: none;
1240
padding: ($large_size - 16px) / 2;
1241
}
1242
&:active { background-color: $track_color; color: $fg_color; }
1243
1244
& > StIcon { icon-size: 16px; }
1245
}
1246
1247
//Activities Ripples
1248
.ripple-box {
1249
width: 48px;
1250
height: 48px;
1251
background-image: url("assets/corner-ripple-ltr.svg");
1252
background-size: contain;
1253
}
1254
1255
.ripple-box:rtl {
1256
background-image: url("assets/corner-ripple-rtl.svg");
1257
}
1258
1259
// not really top bar only
1260
.popup-menu-arrow { width: 16px; height: 16px; }
1261
.popup-menu-icon { icon-size: em(16px); }
1262
1263
//close buttons
1264
1265
.window-close {
1266
height: $medium_size;
1267
width: $medium_size;
1268
-st-background-image-shadow: $shadow_1;
1269
background-image: url("assets/window-close.svg");
1270
background-size: $medium_size;
1271
&:hover { -st-background-image-shadow: $shadow_2; }
1272
&:active { background-image: url("assets/window-close-active.svg"); }
1273
}
1274
.window-close {
1275
-shell-close-overlap: $medium_size / 2;
1276
&:rtl { -st-background-image-shadow: $shadow_1; }
1277
&:rtl:hover { -st-background-image-shadow: $shadow_2; }
1278
}
1279
1280
/* NETWORK DIALOGS */
1281
1282
.nm-dialog {
1283
max-height: 500px;
1284
min-height: 450px;
1285
min-width: 470px;
1286
}
1287
1288
.nm-dialog-content {
1289
spacing: 20px;
1290
padding: 24px;
1291
}
1292
.nm-dialog-header-hbox { spacing: 10px; }
1293
.nm-dialog-airplane-box { spacing: 12px; }
1294
1295
.nm-dialog-airplane-headline {
1296
font-weight: bold;
1297
text-align: center;
1298
}
1299
1300
.nm-dialog-airplane-text { color: $fg_color; }
1301
.nm-dialog-header-icon { icon-size: 32px; }
1302
.nm-dialog-scroll-view { border: none; }
1303
.nm-dialog-header { @include font(title); }
1304
1305
.nm-dialog-item {
1306
font-size: 1em;
1307
border-bottom: none;
1308
border-radius: 2px;
1309
padding: 12px;
1310
spacing: 20px;
1311
&:hover, &:focus { background-color: $divider_color; }
1312
&:active { background-color: $track_color; }
1313
}
1314
1315
.nm-dialog-item:selected {
1316
background-color: $primary_color;
1317
color: $inverse_fg_color;
1318
}
1319
1320
.nm-dialog-icons { spacing: .5em; }
1321
.nm-dialog-icon { icon-size: 16px; }
1322
.no-networks-label { color: $tertiary_fg_color; }
1323
.no-networks-box { spacing: 12px; }
1324
1325
/* OVERVIEW */
1326
1327
#overview {
1328
spacing: 24px; //
1329
StScrollBar { @extend %overview_scrollbar; }
1330
}
1331
1332
.overview-controls {
1333
padding-bottom: 32px;
1334
}
1335
1336
.window-picker { //container around window thumbnails
1337
-horizontal-spacing: 32px;
1338
-vertical-spacing: 32px;
1339
padding-left: 32px;
1340
padding-right: 32px;
1341
padding-bottom: 48px;
1342
1343
&.external-monitor { padding: 32px; }
1344
}
1345
1346
.window-clone-border {
1347
border: 4px solid $inverse_track_color;
1348
border-radius: 2px;
1349
// For window decorations with round corners we can't match
1350
// the exact shape when the window is scaled. So apply a shadow
1351
// to fix that case
1352
box-shadow: inset 0 0 0 1px $inverse_track_color;
1353
}
1354
.window-caption {
1355
spacing: 25px;
1356
color: $inverse_fg_color;
1357
background-color: transparent;
1358
border-radius: 2px;
1359
padding: 4px 8px;
1360
-shell-caption-spacing: 12px;
1361
&:hover { background-color: $inverse_track_color; color: $inverse_fg_color; }
1362
}
1363
1364
//search entry
1365
.search-entry {
1366
width: 320px - 8px * 2;
1367
padding: 0 8px;
1368
border-radius: 0;
1369
color: $tertiary_inverse_fg_color;
1370
selection-background-color: $inverse_track_color;
1371
selected-color: $inverse_fg_color;
1372
@include entry(normal,$fc:$inverse_track_color);
1373
&:focus {
1374
@include entry(focus,$fc:$inverse_fg_color);
1375
padding: 0 8px;
1376
border-width: 0;
1377
color: $inverse_fg_color;
1378
}
1379
1380
.search-entry-icon { icon-size: 16px; padding: 0 0; color: $tertiary_inverse_fg_color; }
1381
1382
&:hover, &:focus {
1383
.search-entry-icon { color: $inverse_fg_color; }
1384
}
1385
}
1386
1387
//search results
1388
1389
#searchResultsBin {
1390
max-width: 1000px;
1391
}
1392
1393
#searchResultsContent {
1394
padding-left: 20px;
1395
padding-right: 20px;
1396
spacing: 16px;
1397
}
1398
1399
.search-section { spacing: 16px; } // This should be equal to #searchResultsContent spacing
1400
.search-section-content { spacing: 32px; } // This is the space between the provider icon and the results container
1401
.search-statustext { // "no results"
1402
@extend %status_text;
1403
}
1404
.list-search-results { spacing: 3px; }
1405
1406
.search-section-separator {
1407
-gradient-height: 1px;
1408
-gradient-start: rgba(255,255,255,0);
1409
-gradient-end: rgba(255,255,255,0.4);
1410
-margin-horizontal: 1.5em;
1411
height: 1px;
1412
}
1413
1414
.list-search-result-content { spacing: 12px; padding: 12px; }
1415
.list-search-result-title { @include font(headline); color: $inverse_fg_color; }
1416
.list-search-result-description { color: $secondary_inverse_fg_color; }
1417
.search-provider-icon { padding: 15px; }
1418
.search-provider-icon-more {
1419
width: 16px;
1420
height: 16px;
1421
background-image: url("assets/more-results.svg");
1422
}
1423
1424
1425
/* DASHBOARD */
1426
1427
#dash {
1428
font-size: 1em;
1429
color: $inverse_fg_color;
1430
background-color: $inverse_bg_color;
1431
padding: 3px 0;
1432
border: none;
1433
border-left: 0px;
1434
border-radius: 0px 2px 2px 0px;
1435
1436
&:rtl {
1437
border-radius: 2px 0 0 2px;
1438
}
1439
1440
.placeholder {
1441
background-image: url("assets/dash-placeholder.svg");
1442
background-size: contain;
1443
height: 24px;
1444
}
1445
1446
.empty-dash-drop-target {
1447
width: 24px;
1448
height: 24px;
1449
}
1450
1451
}
1452
1453
.dash-item-container > StWidget {
1454
padding: 3px 6px;
1455
}
1456
1457
.dash-label { //osd tooltip
1458
// min-height: 32px - 6px * 2;
1459
border-radius: 2px;
1460
padding: 7px 8px;
1461
color: $fg_color;
1462
background-color: $base_color;
1463
box-shadow: $shadow_2;
1464
text-align: center;
1465
-x-offset: 8px;
1466
}
1467
1468
/* App Vault/Grid */
1469
.icon-grid {
1470
spacing: 30px;
1471
-shell-grid-horizontal-item-size: 136px;
1472
-shell-grid-vertical-item-size: 136px;
1473
1474
.overview-icon { icon-size: 96px; }
1475
}
1476
//.app-display { spacing: 20px; }
1477
1478
.app-view-controls { //favorties | all toggle container
1479
width: 320px;
1480
padding-bottom: 32px;
1481
}
1482
.app-view-control { //favorties | all toggle button
1483
padding: 0 16px;
1484
font-weight: bold;
1485
color: $secondary_inverse_fg_color;
1486
&:hover {
1487
color: $inverse_fg_color;
1488
background-color: $inverse_divider_color !important;
1489
}
1490
&:active {
1491
color: $inverse_fg_color;
1492
background-color: $inverse_track_color !important;
1493
}
1494
&:checked {
1495
color: $inverse_fg_color;
1496
background-color: rgba($bg_color, 0.01) !important;
1497
box-shadow: inset 0 2px 0 $inverse_fg_color;
1498
}
1499
&:first-child {
1500
border-right-width: 0;
1501
border-radius: 2px;
1502
&:checked { border-radius: 0; }
1503
}
1504
&:last-child {
1505
border-radius: 2px;
1506
&:checked { border-radius: 0; }
1507
}
1508
}
1509
1510
//Icon tile
1511
.search-provider-icon,
1512
.list-search-result {
1513
@extend %icon_tile;
1514
&:focus, &:selected, &:hover {
1515
background-color: $inverse_divider_color;
1516
transition-duration: 0s;
1517
}
1518
&:active, &:checked {
1519
background-color: $inverse_track_color;
1520
transition-duration: $longer_duration;
1521
}
1522
}
1523
.app-well-app,
1524
.app-well-app.app-folder,
1525
.show-apps,
1526
.grid-search-result {
1527
& .overview-icon {
1528
@extend %icon_tile;
1529
}
1530
&:hover .overview-icon,
1531
&:focus .overview-icon,
1532
&:selected .overview-icon {
1533
background-color: $inverse_divider_color;
1534
transition-duration: 0s;
1535
border-image: none;
1536
background-image: none;
1537
}
1538
&:active .overview-icon,
1539
&:checked .overview-icon {
1540
background-color: $inverse_track_color;
1541
box-shadow: $shadow_0;
1542
transition-duration: $longer_duration;
1543
}
1544
1545
}
1546
1547
.app-well-app-running-dot { //running apps indicator
1548
width: 32px; height: 2px;
1549
background-color: $inverse_fg_color;
1550
margin-bottom: 0;
1551
}
1552
1553
%icon_tile {
1554
color: $inverse_fg_color;
1555
border-radius: 2px;
1556
padding: 6px;
1557
border: none;
1558
transition-duration: $longer_duration;
1559
text-align: center;
1560
}
1561
1562
.app-well-app.app-folder > .overview-icon {
1563
background-color: $inverse_bg_color;
1564
}
1565
1566
.show-apps .show-apps-icon {
1567
color: $secondary_inverse_fg_color;
1568
}
1569
1570
.show-apps:hover .show-apps-icon,
1571
.show-apps:active .show-apps-icon,
1572
.show-apps:checked .show-apps-icon,
1573
.show-apps:focus .show-apps-icon {
1574
color: $inverse_fg_color;
1575
transition-duration: $longer_duration;
1576
}
1577
1578
1579
// Collections
1580
.app-folder-popup { //expanded collection
1581
-arrow-border-radius: 2px;
1582
-arrow-background-color: $inverse_bg_color;
1583
-arrow-base: 24px;
1584
-arrow-rise: 12px;
1585
}
1586
.app-folder-popup-bin { padding: 5px; }
1587
.app-folder-icon {
1588
padding: 5px;
1589
spacing-rows: 5px;
1590
spacing-columns: 5px;
1591
}
1592
1593
.page-indicator {
1594
padding: 15px 20px;
1595
1596
.page-indicator-icon {
1597
width: 12px;
1598
height: 12px;
1599
border-radius: 12px;
1600
background-image: none;
1601
background-color: $disabled_secondary_inverse_fg_color;
1602
}
1603
&:hover .page-indicator-icon {
1604
background-image: none;
1605
background-color: $disabled_inverse_fg_color;
1606
}
1607
&:active .page-indicator-icon {
1608
background-image: none;
1609
background-color: $secondary_inverse_fg_color;
1610
}
1611
&:checked .page-indicator-icon {
1612
background-image: none;
1613
background-color: $inverse_fg_color;
1614
transition-duration: 0s;
1615
}
1616
&:checked:active { background-image: none; }
1617
}
1618
1619
.no-frequent-applications-label { @extend %status_text; }
1620
1621
.app-well-app > .overview-icon.overview-icon-with-label,
1622
.grid-search-result .overview-icon.overview-icon-with-label {
1623
padding: 10px 8px 5px 8px;
1624
spacing: 4px;
1625
}
1626
1627
// Workspace pager
1628
.workspace-thumbnails { //container ala dash
1629
@extend %overview-panel;
1630
visible-width: 32px; //amount visible before hover
1631
spacing: 12px;
1632
padding: 12px;
1633
border-radius: 2px 0 0 2px;
1634
//border-width: 0; //fixme: can't have non unoform borders :(
1635
&:rtl { border-radius: 0 2px 2px 0;}
1636
}
1637
.workspace-thumbnail-indicator {
1638
border: 0 solid $inverse_fg_color;
1639
border-left-width: 2px;
1640
padding: 6px;
1641
border-radius: 0;
1642
}
1643
1644
//Some hacks I don't even
1645
.search-display > StBoxLayout,
1646
.all-apps,
1647
.frequent-apps > StBoxLayout {
1648
// horizontal padding to make sure scrollbars or dash don't overlap content
1649
padding: 0px 88px 10px 88px;
1650
}
1651
1652
%overview-panel {
1653
color: $inverse_fg_color;
1654
background-color: $inverse_bg_color;
1655
border: none;
1656
}
1657
1658
%status_text {
1659
@include font(display-2);
1660
color: $tertiary_inverse_fg_color;
1661
}
1662
1663
/* NOTIFICATIONS & MESSAGE TRAY */
1664
1665
.url-highlighter { link-color: $link_color; }
1666
1667
// Banners
1668
.notification-banner {
1669
font-size: 1em;
1670
width: 34em;
1671
min-height: $menuitem_size * 2;
1672
margin: 5px;
1673
border-radius: 2px;
1674
color: $fg_color;
1675
background-color: $base_color;
1676
border: none;
1677
box-shadow: $shadow_2;
1678
&:hover { background-color: $base_color; }
1679
&:focus { background-color: $base_color; }
1680
1681
.notification-icon { padding: 5px; }
1682
.notification-content { padding: 5px; spacing: 5px; }
1683
.secondary-icon { icon-size: em(16px); }
1684
.notification-actions {
1685
background-color: transparent;
1686
padding-top: 0;
1687
border-top: 1px solid $border_color;
1688
spacing: 1px;
1689
}
1690
.notification-button {
1691
min-height: 40px;
1692
padding: 0 16px;
1693
background-color: transparent;
1694
color: $secondary_fg_color;
1695
font-weight: 500;
1696
&:first-child { border-radius: 0 0 0 2px; }
1697
&:last-child { border-radius: 0 0 2px 0; }
1698
&:hover, &focus { background-color: $divider_color; color: $fg_color; }
1699
&:active { background-color: $track_color; color: $fg_color; }
1700
}
1701
}
1702
.summary-source-counter {
1703
font-size: 1em;
1704
font-weight: bold;
1705
height: 1.6em; width: 1.6em;
1706
-shell-counter-overlap-x: 3px;
1707
-shell-counter-overlap-y: 3px;
1708
background-color: $primary_color;
1709
color: $inverse_fg_color;
1710
border: 2px solid $inverse_fg_color;
1711
box-shadow: 0 2px 2px rgba(0,0,0,0.5);
1712
border-radius: 0.9em; // should be 0.8 but whatever; wish I could do 50%;
1713
}
1714
1715
.secondary-icon { icon-size: em(16px); }
1716
1717
//chat bubbles
1718
.chat-body { spacing: 5px; }
1719
.chat-response { margin: 5px; }
1720
.chat-log-message { color: $fg_color; }
1721
.chat-new-group { padding-top: 1em; }
1722
.chat-received {
1723
padding-left: 4px;
1724
&:rtl { padding-left: 0px; padding-right: 4px; }
1725
}
1726
.chat-sent {
1727
padding-left: 18pt;
1728
color: $secondary_fg_color;
1729
&:rtl { padding-left: 0; padding-right: 18pt; }
1730
}
1731
.chat-meta-message {
1732
padding-left: 4px;
1733
@include font(caption);
1734
color: $tertiary_fg_color;
1735
&:rtl { padding-left: 0; padding-right: 4px; }
1736
}
1737
1738
//hotplug
1739
.hotplug-transient-box {
1740
spacing: 6px;
1741
padding: 2px 72px 2px 12px;
1742
}
1743
.hotplug-notification-item {
1744
padding: 2px 10px;
1745
&:focus { padding: 1px 71px 1px 11px; }
1746
}
1747
1748
.hotplug-notification-item-icon {
1749
icon-size: 24px;
1750
padding: 2px 5px;
1751
}
1752
1753
.hotplug-resident-box { spacing: 8px; }
1754
1755
.hotplug-resident-mount {
1756
spacing: 8px;
1757
border-radius: 2px;
1758
&:hover { background-color: $divider_color; }
1759
&:active { background-color: $track_color; }
1760
}
1761
1762
.hotplug-resident-mount-label {
1763
color: inherit;
1764
padding-left: 6px;
1765
}
1766
1767
.hotplug-resident-mount-icon {
1768
icon-size: 24px;
1769
padding-left: 6px;
1770
}
1771
1772
.hotplug-resident-eject-icon {
1773
icon-size: 16px;
1774
}
1775
1776
.hotplug-resident-eject-button {
1777
padding: 7px;
1778
border-radius: 2px;
1779
color: $fg_color;
1780
}
1781
1782
/* Eeeky things */
1783
1784
$legacy_icon_size: 24px;
1785
1786
.legacy-tray {
1787
background-color: $bg_color;
1788
color: $inverse_fg_color;
1789
border: none;
1790
border-bottom-width: 0;
1791
&:ltr { border-radius: 0 2px 0 0; border-left-width: 0; }
1792
&:rtl { border-radius: 2px 0 0 0; border-right-width: 0; }
1793
}
1794
1795
.legacy-tray-handle,
1796
.legacy-tray-icon {
1797
padding: 6px;
1798
& StIcon { icon-size: $legacy_icon_size; }
1799
&:hover,&:focus { background-color: $inverse_divider_color; }
1800
&:active { background-color: $inverse_track_color; }
1801
}
1802
1803
.legacy-tray-icon-box {
1804
spacing: 12px;
1805
&:ltr { padding-left: 12px; }
1806
&:rtl { padding-right: 12px; }
1807
& StButton { width: $legacy_icon_size; height: $legacy_icon_size }
1808
}
1809
1810
//magnifier
1811
1812
.magnifier-zoom-region {
1813
border: 2px solid $primary_color;
1814
&.full-screen { border-width: 0; }
1815
}
1816
1817
//Keyboard
1818
/* On-screen Keyboard */
1819
1820
#keyboard {
1821
background-color: $alt_bg_color;
1822
}
1823
1824
.keyboard-layout {
1825
spacing: 10px;
1826
padding: 10px;
1827
}
1828
1829
.keyboard-row { spacing: 15px; }
1830
1831
.keyboard-key {
1832
min-height: $medium_size * 2;
1833
min-width: $medium_size * 2;
1834
font-size: 2em;
1835
font-weight: 500;
1836
border-radius: 2px;
1837
border: none;
1838
color: inherit;
1839
@include button(normal);
1840
&:focus { @include button(focus); }
1841
&:hover,&:checked { @include button(hover); }
1842
&:active { @include button(active);}
1843
&:grayed { //FIXME
1844
background-color: $alt_bg_color;
1845
color: $inverse_fg_color;
1846
border-color: $alt_bg_color;
1847
}
1848
}
1849
1850
.keyboard-subkeys { //long press on a key popup
1851
color: inherit;
1852
padding: 5px;
1853
-arrow-border-radius: 0;
1854
-arrow-background-color: transparent;
1855
-arrow-border-width: 0;
1856
-arrow-border-color: transparent;
1857
-arrow-base: 0;
1858
-arrow-rise: 0;
1859
-boxpointer-gap: 5px;
1860
background-color: $base_color;
1861
border-radius: 2px;
1862
box-shadow: $shadow_2;
1863
}
1864
1865
// IBus Candidate Popup
1866
1867
.candidate-popup-content {
1868
padding: 8px;
1869
spacing: 0;
1870
}
1871
1872
.candidate-index {
1873
padding: 0 4px 0 0;
1874
color: $tertiary_fg_color;
1875
.candidate-box:selected & { color: $tertiary_inverse_fg_color; }
1876
}
1877
1878
.candidate-box {
1879
transition-duration: 0s; // FIXME: needs more natural transitions
1880
min-height: $menuitem_size;
1881
padding: 0 8px;
1882
border-radius: 2px;
1883
&:hover { background-color: $divider_color; color: $fg_color; }
1884
&:active { background-color: $track_color; color: $fg_color; }
1885
&:selected { background-color: $primary_color; color: $inverse_fg_color; }
1886
}
1887
1888
.candidate-page-button-box {
1889
height: $menuitem_size;
1890
.vertical & { padding-top: 0; }
1891
.horizontal & { padding-left: 0; }
1892
}
1893
1894
.candidate-page-button {
1895
min-width: $menuitem_size;
1896
min-height: $menuitem_size;
1897
padding: 0;
1898
}
1899
1900
.candidate-page-button-previous { border-radius: 2px; border-right-width: 0; }
1901
.candidate-page-button-next { border-radius: 2px; }
1902
.candidate-page-button-icon { icon-size: em(16px); }
1903
1904
/* Auth Dialogs & Screen Shield */
1905
1906
.framed-user-icon {
1907
background-size: contain;
1908
border: none;
1909
color: $inverse_fg_color;
1910
border-radius: 2px;
1911
&:hover {
1912
border-color: $inverse_fg_color;
1913
color: $inverse_fg_color;
1914
}
1915
}
1916
1917
// LOGIN DIALOG
1918
1919
.login-dialog-banner-view {
1920
padding-top: 24px;
1921
max-width: 23em;
1922
}
1923
1924
.login-dialog {
1925
//reset
1926
border: none;
1927
background-color: transparent;
1928
1929
StEntry {
1930
color: $inverse_fg_color;
1931
selection-background-color: $inverse_track_color;
1932
selected-color: $inverse_fg_color;
1933
@include entry(normal, $fc:$inverse_track_color);
1934
&:focus { @include entry(focus, $fc:$inverse_fg_color); }
1935
&:insensitive {
1936
@include entry(insensitive, $fc:$inverse_divider_color);
1937
color: $disabled_inverse_fg_color;
1938
}
1939
}
1940
1941
.modal-dialog-button-box { spacing: 3px; }
1942
.modal-dialog-button {
1943
padding: 0 16px;
1944
@include button(flat-normal, $tc: $inverse_fg_color);
1945
&:hover,&:focus { @include button(flat-hover, $tc: $inverse_fg_color); }
1946
&:active { @include button(flat-active, $tc: $inverse_fg_color); }
1947
&:insensitive { @include button(flat-insensitive, $tc: $inverse_fg_color); }
1948
1949
&:default {
1950
@include button(normal, $c: $suggested_color, $tc: $inverse_fg_color);
1951
&:hover,&:focus { @include button(hover, $c: $suggested_color, $tc: $inverse_fg_color); }
1952
&:active { @include button(active, $c: $suggested_color, $tc: $inverse_fg_color); }
1953
&:insensitive { @include button(insensitive, $c: $inverse_divider_color, $tc: $disabled_inverse_fg_color); }
1954
}
1955
}
1956
}
1957
1958
.login-dialog-logo-bin { padding: 24px 0px; }
1959
.login-dialog-banner { color: $secondary_inverse_fg_color; }
1960
.login-dialog-button-box { spacing: 5px; }
1961
.login-dialog-message-warning { color: $warning_color; }
1962
.login-dialog-message-hint { padding-top: 0; padding-bottom: 20px; }
1963
.login-dialog-user-selection-box {
1964
padding: 100px 0px;
1965
.login-dialog-not-listed-label {
1966
padding-left: 2px;
1967
.login-dialog-not-listed-button:focus &,
1968
.login-dialog-not-listed-button:hover & {
1969
color: $inverse_fg_color;
1970
}
1971
}
1972
}
1973
.login-dialog-not-listed-label {
1974
font-size: 1em;
1975
font-weight: bold;
1976
color: $secondary_inverse_fg_color;
1977
padding-top: 1em;
1978
&:hover { color: $inverse_fg_color; }
1979
&:focus { background-color: $inverse_divider_color; }
1980
}
1981
1982
.login-dialog-user-list-view { -st-vfade-offset: 1em; }
1983
.login-dialog-user-list {
1984
spacing: 12px;
1985
padding: .2em;
1986
width: 23em;
1987
&:expanded .login-dialog-user-list-item:focus { background-color: $inverse_divider_color; color: $inverse_fg_color; }
1988
&:expanded .login-dialog-user-list-item:hover { background-color: $inverse_divider_color; color: $inverse_fg_color; }
1989
&:expanded .login-dialog-user-list-item:active { background-color: $inverse_track_color; color: $inverse_fg_color; }
1990
&:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $inverse_fg_color; }
1991
}
1992
.login-dialog-user-list-item {
1993
border-radius: 2px;
1994
padding: 4px 4px 0;
1995
color: $secondary_inverse_fg_color;
1996
&:ltr { padding-right: 1em; }
1997
&:rtl { padding-left: 1em; }
1998
&:hover { background-color: $inverse_divider_color; color: $inverse_fg_color; }
1999
&:active { background-color: $inverse_track_color; color: $inverse_fg_color; }
2000
.login-dialog-timed-login-indicator {
2001
height: 2px;
2002
margin: 2px 0 0 0;
2003
background-color: $inverse_fg_color;
2004
}
2005
&:focus .login-dialog-timed-login-indicator { background-color: $inverse_fg_color; }
2006
}
2007
2008
.login-dialog-username,
2009
.user-widget-label {
2010
color: $inverse_fg_color;
2011
@include font(title);
2012
text-align: left;
2013
padding-left: 15px;
2014
}
2015
.user-widget-label {
2016
&:ltr { padding-left: 18px; }
2017
&:rtl { padding-right: 18px; }
2018
}
2019
2020
.login-dialog-prompt-layout {
2021
padding-top: 24px;
2022
padding-bottom: 12px;
2023
spacing: 8px;
2024
width: 23em;
2025
}
2026
2027
.login-dialog-prompt-label {
2028
color: $tertiary_inverse_fg_color;
2029
font-size: 1em;
2030
padding-top: 1em;
2031
}
2032
2033
.login-dialog-session-list-button StIcon {
2034
icon-size: 1.25em;
2035
}
2036
2037
.login-dialog-session-list-button {
2038
color: $secondary_inverse_fg_color;
2039
&:hover,&:focus { color: $inverse_fg_color; }
2040
&:active { color: $inverse_fg_color; }
2041
}
2042
2043
//SCREEN SHIELD
2044
2045
.screen-shield-arrows {
2046
padding-bottom: 3em;
2047
}
2048
2049
.screen-shield-arrows Gjs_Arrow {
2050
color: white;
2051
width: 80px;
2052
height: 48px;
2053
-arrow-thickness: 12px;
2054
-arrow-shadow: $shadow_1;
2055
}
2056
2057
.screen-shield-clock {
2058
color: white;
2059
text-shadow: $shadow_1;
2060
font-weight: normal;
2061
text-align: center;
2062
padding-bottom: 1.5em;
2063
}
2064
2065
.screen-shield-clock-time {
2066
@include font(display-4);
2067
text-shadow: $shadow_1;
2068
}
2069
2070
.screen-shield-clock-date { @include font(display-2); }
2071
2072
.screen-shield-notifications-container {
2073
spacing: 6px;
2074
width: 30em;
2075
background-color: transparent;
2076
max-height: 500px;
2077
.summary-notification-stack-scrollview {
2078
padding-top: 0;
2079
padding-bottom: 0;
2080
}
2081
2082
.notification,
2083
.screen-shield-notification-source {
2084
padding: 8px;
2085
border: none;
2086
background-color: $alt_bg_color;
2087
color: $inverse_fg_color;
2088
border-radius: 2px;
2089
}
2090
.notification { margin-right: 16px; } //compensate for space allocated to the scrollbar
2091
}
2092
2093
2094
.screen-shield-notification-label {
2095
min-height: $small_size - 2px;
2096
padding: 2px 0px 0px 16px;
2097
font-weight: bold;
2098
}
2099
2100
.screen-shield-notification-count-text {
2101
min-height: $small_size - 2px;
2102
padding: 2px 0px 0px 16px;
2103
color: $secondary_inverse_fg_color;
2104
}
2105
2106
#panel.lock-screen { background-color: $alt_bg_color; }
2107
2108
.screen-shield-background { //just the shadow, really
2109
background: black;
2110
box-shadow: $shadow_5;
2111
}
2112
2113
#lockDialogGroup {
2114
background: #607D8B url("assets/noise-texture.svg");
2115
background-size: cover;
2116
}
2117
2118
#screenShieldNotifications {
2119
StScrollBar { @extend %overview_scrollbar; }
2120
}
2121
2122
2123
// Looking Glass
2124
#LookingGlassDialog {
2125
background-color: $base_color;
2126
spacing: 4px;
2127
padding: 0;
2128
border: none;
2129
border-radius: 2px;
2130
box-shadow: $shadow_4;
2131
& > #Toolbar {
2132
padding: 0 8px;
2133
border: none;
2134
border-radius: 0;
2135
background-color: rgba($base_color, 0.01);
2136
box-shadow: inset 0 -1px 0 $border_color;
2137
}
2138
.labels { spacing: 0; }
2139
.notebook-tab {
2140
-natural-hpadding: 12px;
2141
-minimum-hpadding: 6px;
2142
font-weight: bold;
2143
color: $tertiary_fg_color;
2144
transition-duration: $longer_duration;
2145
padding-left: 16px;
2146
padding-right: 16px;
2147
min-height: $medium_size;
2148
padding: 0 16px * 2;
2149
&:hover {
2150
box-shadow: inset 0 -2px 0px $track_color;
2151
color: $fg_color;
2152
text-shadow: none;
2153
}
2154
&:selected {
2155
border-bottom-width: 0;
2156
border-color: transparent;
2157
background-color: rgba($base_color, 0.01);
2158
box-shadow: inset 0 -2px 0px $primary_color;
2159
color: $fg_color;
2160
text-shadow: none;
2161
}
2162
}
2163
StBoxLayout#EvalBox { padding: 4px; spacing: 4px; }
2164
StBoxLayout#ResultsArea { spacing: 4px; }
2165
}
2166
2167
.lg-dialog {
2168
StEntry {
2169
selection-background-color: $primary_color;
2170
selected-color: $inverse_fg_color;
2171
}
2172
.shell-link {
2173
color: $link_color;
2174
&:hover { color: $link_color; }
2175
}
2176
}
2177
2178
.lg-completions-text {
2179
font-size: 1em;
2180
font-style: italic;
2181
}
2182
2183
.lg-obj-inspector-title {
2184
spacing: 4px;
2185
}
2186
2187
.lg-obj-inspector-button {
2188
min-height: $medium_size;
2189
padding: 0 16px;
2190
border: none;
2191
border-radius: 2px;
2192
@include font(button);
2193
@include button(flat-normal);
2194
&:hover { @include button(flat-hover); }
2195
&:active { @include button(flat-active); }
2196
&:insensitive { @include button(flat-insensitive); }
2197
&:focus { @include button(flat-focus); }
2198
&:hover { border: none; }
2199
}
2200
2201
#lookingGlassExtensions { padding: 4px; }
2202
2203
.lg-extensions-list {
2204
padding: 4px;
2205
spacing: 6px;
2206
}
2207
2208
.lg-extension {
2209
border: none;
2210
border-radius: 2px;
2211
padding: 4px;
2212
}
2213
2214
.lg-extension-name {
2215
@include font(headline);
2216
}
2217
2218
.lg-extension-meta {
2219
spacing: 6px;
2220
}
2221
2222
#LookingGlassPropertyInspector {
2223
background: $base_color;
2224
border: none;
2225
border-radius: 2px;
2226
padding: 6px;
2227
box-shadow: $shadow_4;
2228
}
2229