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.56 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: $disabled_fill_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: $disabled_inverse_fill_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: $fill_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: $semi_fill_color;
180
}
181
&:active StBin {
182
background-color: $fill_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: scale-alpha($accent_color, $lower_opacity / 2);
192
}
193
&:active:checked StBin {
194
background-color: scale-alpha($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: scale-alpha($link_color, $lower_opacity / 2);
219
}
220
&:active {
221
color: $link_color;
222
background-color: scale-alpha($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: $semi_fill_color;
616
color: $fg_color;
617
transition-duration: 0s;
618
}
619
&:active {
620
background-color: $fill_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: $fill_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
.pad-osd-title-box { spacing: 12px; }
710
.pad-osd-title-menu-box { spacing: 6px; }
711
}
712
713
.combo-box-label {
714
width: 15em;
715
}
716
717
/* App Switcher */
718
.switcher-popup {
719
padding: 8px;
720
spacing: 16px;
721
}
722
723
.osd-window,
724
.resize-popup,
725
.switcher-list {
726
@extend %osd-panel;
727
}
728
729
.switcher-list-item-container { spacing: 8px; }
730
731
.switcher-list .item-box {
732
padding: 8px;
733
border-radius: 2px;
734
}
735
736
.switcher-list .item-box:outlined {
737
padding: 8px;
738
border: none;
739
background-color: $disabled_fill_color;
740
}
741
742
.switcher-list .item-box:selected {
743
background-color: $primary_color;
744
color: $inverse_fg_color;
745
}
746
747
.switcher-list .thumbnail-box {
748
padding: 2px;
749
spacing: 4px;
750
}
751
752
.switcher-list .thumbnail {
753
width: 256px;
754
}
755
756
.switcher-list .separator {
757
width: 1px;
758
background: $border_color;
759
}
760
761
.switcher-arrow {
762
border-color: rgba(0,0,0,0);
763
color: $tertiary_fg_color;
764
&:highlighted {
765
color: $fg_color;
766
}
767
}
768
769
.input-source-switcher-symbol {
770
@include font(display-2);
771
width: 96px;
772
height: 96px;
773
}
774
775
/* Window Cycler */
776
.cycler-highlight { border: 4px solid $primary_color; }
777
778
/* Workspace Switcher */
779
.workspace-switcher-group { padding: 8px; }
780
781
.workspace-switcher-container {
782
@extend %osd-panel;
783
}
784
785
.workspace-switcher {
786
background: transparent;
787
border: 0px;
788
border-radius: 0px;
789
padding: 0px;
790
spacing: 8px;
791
}
792
793
.ws-switcher-active-up, .ws-switcher-active-down {
794
height: 48px;
795
background-color: $primary_color;
796
color: $inverse_fg_color;
797
background-size: 32px;
798
border-radius: 2px;
799
}
800
801
.ws-switcher-box {
802
height: 48px;
803
border: none;
804
background: $disabled_fill_color;
805
border-radius: 2px;
806
}
807
808
%osd-panel {
809
color: $fg_color;
810
background-color: $base_color;
811
border: none;
812
box-shadow: $shadow_4;
813
border-radius: 2px;
814
padding: 12px;
815
}
816
817
/* Tiled window previews */
818
.tile-preview {
819
background-color: scale-alpha($alt_primary_color, $lower_opacity);
820
border: 1px solid $alt_primary_color;
821
}
822
823
.tile-preview-left.on-primary {
824
border-radius: $panel-corner-radius $panel-corner-radius 0 0;
825
}
826
827
.tile-preview-right.on-primary {
828
border-radius: 0 $panel-corner-radius 0 0;
829
}
830
831
.tile-preview-left.tile-preview-right.on-primary {
832
border-radius: $panel-corner-radius $panel-corner-radius 0 0;
833
}
834
835
/* TOP BAR */
836
837
#panel {
838
background-color: $panel_bg_color;
839
font-weight: bold;
840
height: $menuitem_size;
841
842
&:overview,
843
&.unlock-screen,
844
&.login-screen,
845
&.lock-screen {
846
background-color: transparent;
847
}
848
849
#panelLeft, #panelCenter { // spacing between activities<>app menu and such
850
spacing: 0;
851
}
852
853
.panel-corner {
854
-panel-corner-radius: $panel-corner-radius;
855
-panel-corner-background-color: $bg_color;
856
-panel-corner-border-width: 2px;
857
-panel-corner-border-color: transparent;
858
859
&:active, &:overview, &:focus {
860
-panel-corner-border-color: $inverse_fg_color;
861
}
862
863
&.lock-screen, &.login-screen, &.unlock-screen {
864
-panel-corner-radius: 0;
865
-panel-corner-background-color: transparent;
866
-panel-corner-border-color: transparent;
867
}
868
}
869
870
.panel-button {
871
-natural-hpadding: 12px;
872
-minimum-hpadding: 6px;
873
font-weight: bold;
874
color: $secondary_inverse_fg_color;
875
transition-duration: $longer_duration;
876
877
.app-menu-icon {
878
-st-icon-style: symbolic;
879
margin-left: 4px;
880
margin-right: 4px;
881
//dimensions of the icon are hardcoded
882
}
883
884
&:hover {
885
color: $inverse_fg_color;
886
}
887
888
&:active, &:overview, &:focus, &:checked {
889
// Trick due to St limitations. It needs a background to draw
890
// a box-shadow
891
background-color: rgba($bg_color, 0.01);
892
box-shadow: inset 0 -2px 0px $inverse_fg_color;
893
color: $inverse_fg_color;
894
895
& > .system-status-icon { icon-shadow: none; }
896
}
897
898
.system-status-icon { icon-size: em(16px); padding: 0 4px; }
899
.unlock-screen &,
900
.login-screen &,
901
.lock-screen & {
902
color: $secondary_inverse_fg_color;
903
&:focus, &:hover, &:active { color: $inverse_fg_color; }
904
}
905
}
906
907
.panel-status-indicators-box,
908
.panel-status-menu-box {
909
spacing: 2px;
910
}
911
912
// spacing between power icon and (optional) percentage label
913
.power-status.panel-status-indicators-box {
914
spacing: 0;
915
}
916
917
.screencast-indicator { color: $warning_color; }
918
}
919
920
// calendar popover
921
#calendarArea {
922
padding: 8px 16px;
923
}
924
925
.calendar {
926
margin-bottom: 0;
927
}
928
929
.calendar,
930
.datemenu-today-button,
931
.datemenu-displays-box,
932
.message-list-sections {
933
margin: 0 8px;
934
}
935
936
.datemenu-calendar-column { spacing: 8px; }
937
.datemenu-displays-section { padding-bottom: 0; }
938
.datemenu-displays-box { spacing: 8px; }
939
940
.datemenu-calendar-column {
941
border: 0 solid $border_color;
942
&:ltr { border-left-width: 0; }
943
&:rtl { border-right-width: 0; }
944
}
945
946
.datemenu-today-button,
947
.world-clocks-button,
948
.weather-button,
949
.events-section-title {
950
min-height: $menuitem_size - 4px * 2;
951
padding: 4px 8px;
952
border-radius: 2px;
953
}
954
955
.datemenu-today-button {
956
min-height: $menuitem_size * 2 - 4px * 2;
957
}
958
959
.message-list-section-list:ltr {
960
padding-left: 0;
961
}
962
963
.message-list-section-list:rtl {
964
padding-right: 0;
965
}
966
967
.datemenu-today-button,
968
.world-clocks-button,
969
.weather-button,
970
.events-section-title {
971
&:hover,&:focus { color: $fg_color; background-color: $semi_fill_color; }
972
&:active {
973
color: $fg_color;
974
background-color: $fill_color;
975
}
976
}
977
978
.datemenu-today-button .day-label {
979
}
980
981
.datemenu-today-button .date-label {
982
@include font(headline);
983
}
984
985
.world-clocks-header,
986
.weather-header,
987
.events-section-title {
988
color: $secondary_fg_color;
989
font-weight: bold;
990
}
991
992
.world-clocks-grid {
993
spacing-rows: 0.4em;
994
}
995
996
.weather-box {
997
spacing: 0.4em;
998
}
999
1000
.calendar-month-label {
1001
height: $menuitem_size - 6px * 2;
1002
margin: 2px;
1003
padding: 6px 16px;
1004
border-radius: 2px;
1005
color: $fg_color;
1006
font-weight: bold;
1007
text-align: center;
1008
&:focus { background-color: $semi_fill_color; }
1009
}
1010
1011
.pager-button {
1012
width: $menuitem_size;
1013
height: $menuitem_size;
1014
margin: 2px;
1015
border-radius: 100px;
1016
background-color: transparent;
1017
color: $fg_color;
1018
&:hover, &:focus { background-color: $semi_fill_color; }
1019
&:active { background-color: $fill_color; }
1020
}
1021
1022
.calendar-change-month-back { //arrow back
1023
background-image: url("assets/calendar-arrow-left.svg");
1024
&:rtl { background-image: url("assets/calendar-arrow-right.svg"); }
1025
}
1026
.calendar-change-month-forward { //arrow foreward
1027
background-image: url("assets/calendar-arrow-right.svg");
1028
&:rtl { background-image: url("assets/calendar-arrow-left.svg"); }
1029
}
1030
1031
.calendar-day-base {
1032
@include font(caption);
1033
text-align: center;
1034
width: $menuitem_size; height: $menuitem_size;
1035
padding: 0;
1036
margin: 2px;
1037
border-radius: 100px;
1038
&:hover,&:focus { background-color: $semi_fill_color; }
1039
// &:active { background-color: $fill_color; }
1040
&:active, &:selected {
1041
color: $inverse_fg_color;
1042
background-color: $primary_color !important;
1043
border-color: transparent; //avoid jumparound due to today
1044
}
1045
&.calendar-day-heading { //day of week heading
1046
width: $menuitem_size; height: $menuitem_size - 7px;
1047
margin-top: 2px;
1048
padding: 7px 0 0;
1049
border-radius: 100px;
1050
background-color: transparent;
1051
color: $tertiary_fg_color;
1052
@include font(caption);
1053
font-weight: bold;
1054
text-align: center;
1055
}
1056
}
1057
.calendar-day { //border collapse hack - see calendar.js
1058
border-width: 0;
1059
}
1060
.calendar-day-top { border-top-width: 0; }
1061
.calendar-day-left { border-left-width: 0; }
1062
.calendar-work-day {
1063
1064
}
1065
.calendar-nonwork-day {
1066
color: $fg_color;
1067
}
1068
.calendar-today {
1069
font-weight: bold !important;
1070
//color: $fg_color;
1071
//background-color: transparent;
1072
border: none;
1073
}
1074
.calendar-day-with-events {
1075
color: $link_color;
1076
font-weight: normal;
1077
text-decoration: underline;
1078
background-image: none;
1079
}
1080
.calendar-other-month-day {
1081
color: $disabled_fg_color;
1082
opacity: 0.5;
1083
}
1084
.calendar-week-number {
1085
width: $menuitem_size; height: $menuitem_size - 7px;
1086
margin: 2px;
1087
padding: 7px 0 0;
1088
border-radius: 100px;
1089
background-color: transparent;
1090
color: $tertiary_fg_color;
1091
font-size: inherit;
1092
font-weight: bold;
1093
text-align: center;
1094
}
1095
1096
/* Message list */
1097
.message-list {
1098
width: 420px;
1099
}
1100
1101
.message-list-clear-button.button {
1102
background-color: transparent;
1103
&:hover,&:focus { background-color: $semi_fill_color; }
1104
&:active { background-color: $fill_color; }
1105
margin: 8px 8px 0;
1106
}
1107
1108
.message-list-sections {
1109
spacing: 8px;
1110
}
1111
1112
.message-list-section,
1113
.message-list-section-list {
1114
spacing: 8px;
1115
}
1116
1117
.message {
1118
min-height: $menuitem_size * 2;
1119
background-color: transparent;
1120
&:hover,&:focus { background-color: $semi_fill_color; }
1121
&:active { background-color: $fill_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
color: $fg_color;
1132
icon-size: 16px;
1133
-st-icon-style: requested;
1134
padding: 4px 0px 4px 4px;
1135
&:rtl { padding: 4px 4px 4px 0px; }
1136
}
1137
1138
.message-secondary-bin {
1139
padding: 0 8px;
1140
}
1141
1142
.message-secondary-bin > .event-time {
1143
min-height: $small_size - 2px;
1144
padding-top: 2px;
1145
color: $tertiary_fg_color;
1146
font-size: 1em;
1147
/* HACK: the label should be baseline-aligned with a 1em label,
1148
fake this with some bottom padding */
1149
padding-bottom: 0;
1150
}
1151
1152
.message-secondary-bin > StIcon {
1153
icon-size: 16px;
1154
}
1155
1156
.message-title {
1157
min-height: $small_size - 2px;
1158
padding-top: 2px;
1159
color: $fg_color;
1160
font-weight: bold;
1161
font-size: 1em;
1162
}
1163
1164
.message-content {
1165
min-height: $menuitem_size * 2 - 8px * 2;
1166
padding: 8px;
1167
color: $secondary_fg_color;
1168
font-size: 1em;
1169
}
1170
1171
.message-content * > StIcon {
1172
icon-size: 16px;
1173
border-radius: 16px;
1174
padding: ($small_size - 16px) / 2;
1175
color: $secondary_fg_color;
1176
}
1177
1178
/* FIXME: how do you do this in sass? */
1179
.message-content *:hover > StIcon,
1180
.message-content *:focus > StIcon {
1181
color: $fg_color;
1182
background-color: $semi_fill_color;
1183
}
1184
1185
.message-content *:active > StIcon {
1186
color: $fg_color;
1187
background-color: $fill_color;
1188
}
1189
1190
.message-media-control {
1191
margin: 16px 0;
1192
padding: 8px;
1193
border-radius: 100px;
1194
color: $secondary_fg_color;
1195
&:hover,&:focus { color: $fg_color; background-color: $semi_fill_color; }
1196
&:active { color: $fg_color; background-color: $fill_color; }
1197
&:insensitive { color: $disabled_secondary_fg_color; }
1198
1199
&:last-child:ltr { margin-right: 16px; padding-right: 8px; }
1200
&:last-child:rtl { margin-left: 16px; padding-left: 8px; }
1201
}
1202
1203
.media-message-cover-icon {
1204
icon-size: 32px !important;
1205
margin: 8px 0;
1206
&.fallback {
1207
icon-size: 16px !important;
1208
padding: 8px;
1209
border: none;
1210
border-radius: 2px;
1211
background-color: $semi_fill_color;
1212
color: $tertiary_fg_color;
1213
}
1214
}
1215
1216
1217
// a little unstructured mess:
1218
1219
.system-switch-user-submenu-icon.user-icon {
1220
icon-size: 20px;
1221
padding: 0 2px;
1222
}
1223
.system-switch-user-submenu-icon.default-icon {
1224
icon-size: 16px;
1225
padding: 0 4px;
1226
}
1227
1228
#appMenu {
1229
spinner-image: url("process-working.svg");
1230
spacing: 4px;
1231
1232
.label-shadow { color: transparent; }
1233
}
1234
1235
.aggregate-menu {
1236
min-width: 280px;
1237
.popup-menu-icon { padding: 0 4px; }
1238
}
1239
1240
.system-menu-action {
1241
color: $secondary_fg_color;
1242
border-radius: 100px; /* wish we could do 50% */
1243
padding: ($large_size - 16px) / 2;
1244
border: none;
1245
1246
&:hover, &:focus {
1247
background-color: $semi_fill_color;
1248
color: $fg_color;
1249
border: none;
1250
padding: ($large_size - 16px) / 2;
1251
}
1252
&:active { background-color: $fill_color; color: $fg_color; }
1253
1254
& > StIcon { icon-size: 16px; }
1255
}
1256
1257
//Activities Ripples
1258
.ripple-box {
1259
width: 48px;
1260
height: 48px;
1261
background-image: url("assets/corner-ripple-ltr.svg");
1262
background-size: contain;
1263
}
1264
1265
.ripple-box:rtl {
1266
background-image: url("assets/corner-ripple-rtl.svg");
1267
}
1268
1269
// not really top bar only
1270
.popup-menu-arrow { width: 16px; height: 16px; }
1271
.popup-menu-icon { icon-size: em(16px); }
1272
1273
//close buttons
1274
1275
.window-close {
1276
height: $medium_size;
1277
width: $medium_size;
1278
-st-background-image-shadow: $shadow_1;
1279
background-image: url("assets/window-close.svg");
1280
background-size: $medium_size;
1281
&:hover { -st-background-image-shadow: $shadow_2; }
1282
&:active { background-image: url("assets/window-close-active.svg"); }
1283
}
1284
.window-close {
1285
-shell-close-overlap: $medium_size / 2;
1286
&:rtl { -st-background-image-shadow: $shadow_1; }
1287
&:rtl:hover { -st-background-image-shadow: $shadow_2; }
1288
}
1289
1290
/* NETWORK DIALOGS */
1291
1292
.nm-dialog {
1293
max-height: 500px;
1294
min-height: 450px;
1295
min-width: 470px;
1296
}
1297
1298
.nm-dialog-content {
1299
spacing: 20px;
1300
padding: 24px;
1301
}
1302
.nm-dialog-header-hbox { spacing: 10px; }
1303
.nm-dialog-airplane-box { spacing: 12px; }
1304
1305
.nm-dialog-airplane-headline {
1306
font-weight: bold;
1307
text-align: center;
1308
}
1309
1310
.nm-dialog-airplane-text { color: $fg_color; }
1311
.nm-dialog-header-icon { icon-size: 32px; }
1312
.nm-dialog-scroll-view { border: none; }
1313
.nm-dialog-header { @include font(title); }
1314
1315
.nm-dialog-item {
1316
font-size: 1em;
1317
border-bottom: none;
1318
border-radius: 2px;
1319
padding: 12px;
1320
spacing: 20px;
1321
&:hover, &:focus { background-color: $semi_fill_color; }
1322
&:active { background-color: $fill_color; }
1323
}
1324
1325
.nm-dialog-item:selected {
1326
background-color: $primary_color;
1327
color: $inverse_fg_color;
1328
}
1329
1330
.nm-dialog-icons { spacing: .5em; }
1331
.nm-dialog-icon { icon-size: 16px; }
1332
.no-networks-label { color: $tertiary_fg_color; }
1333
.no-networks-box { spacing: 12px; }
1334
1335
/* OVERVIEW */
1336
1337
#overview {
1338
spacing: 24px; //
1339
StScrollBar { @extend %overview_scrollbar; }
1340
}
1341
1342
.overview-controls {
1343
padding-bottom: 32px;
1344
}
1345
1346
.window-picker { //container around window thumbnails
1347
-horizontal-spacing: 32px;
1348
-vertical-spacing: 32px;
1349
padding-left: 32px;
1350
padding-right: 32px;
1351
padding-bottom: 48px;
1352
1353
&.external-monitor { padding: 32px; }
1354
}
1355
1356
.window-clone-border {
1357
border: 4px solid $inverse_fill_color;
1358
border-radius: 2px;
1359
// For window decorations with round corners we can't match
1360
// the exact shape when the window is scaled. So apply a shadow
1361
// to fix that case
1362
box-shadow: inset 0 0 0 1px $inverse_fill_color;
1363
}
1364
.window-caption {
1365
spacing: 25px;
1366
color: $inverse_fg_color;
1367
background-color: transparent;
1368
border-radius: 2px;
1369
padding: 4px 8px;
1370
-shell-caption-spacing: 12px;
1371
&:hover { background-color: $inverse_fill_color; color: $inverse_fg_color; }
1372
}
1373
1374
//search entry
1375
.search-entry {
1376
width: 320px - 8px * 2;
1377
padding: 0 8px;
1378
border-radius: 0;
1379
color: $tertiary_inverse_fg_color;
1380
selection-background-color: $inverse_fill_color;
1381
selected-color: $inverse_fg_color;
1382
@include entry(normal,$fc:$inverse_fill_color);
1383
&:focus {
1384
@include entry(focus,$fc:$inverse_fg_color);
1385
padding: 0 8px;
1386
border-width: 0;
1387
color: $inverse_fg_color;
1388
}
1389
1390
.search-entry-icon { icon-size: 16px; padding: 0 0; color: $tertiary_inverse_fg_color; }
1391
1392
&:hover, &:focus {
1393
.search-entry-icon { color: $inverse_fg_color; }
1394
}
1395
}
1396
1397
//search results
1398
1399
#searchResultsBin {
1400
max-width: 1000px;
1401
}
1402
1403
#searchResultsContent {
1404
padding-left: 20px;
1405
padding-right: 20px;
1406
spacing: 16px;
1407
}
1408
1409
.search-section { spacing: 16px; } // This should be equal to #searchResultsContent spacing
1410
.search-section-content { spacing: 32px; } // This is the space between the provider icon and the results container
1411
.search-statustext { // "no results"
1412
@extend %status_text;
1413
}
1414
.list-search-results { spacing: 3px; }
1415
1416
.search-section-separator {
1417
-gradient-height: 1px;
1418
-gradient-start: rgba(255,255,255,0);
1419
-gradient-end: rgba(255,255,255,0.4);
1420
-margin-horizontal: 1.5em;
1421
height: 1px;
1422
}
1423
1424
.list-search-result-content { spacing: 12px; padding: 12px; }
1425
.list-search-result-title { @include font(headline); color: $inverse_fg_color; }
1426
.list-search-result-description { color: $secondary_inverse_fg_color; }
1427
.search-provider-icon { padding: 15px; }
1428
.search-provider-icon-more {
1429
width: 16px;
1430
height: 16px;
1431
background-image: url("assets/more-results.svg");
1432
}
1433
1434
1435
/* DASHBOARD */
1436
1437
#dash {
1438
font-size: 1em;
1439
color: $inverse_fg_color;
1440
background-color: $inverse_bg_color;
1441
padding: 3px 0;
1442
border: none;
1443
border-left: 0px;
1444
border-radius: 0px 2px 2px 0px;
1445
1446
&:rtl {
1447
border-radius: 2px 0 0 2px;
1448
}
1449
1450
.placeholder {
1451
background-image: url("assets/dash-placeholder.svg");
1452
background-size: contain;
1453
height: 24px;
1454
}
1455
1456
.empty-dash-drop-target {
1457
width: 24px;
1458
height: 24px;
1459
}
1460
1461
}
1462
1463
.dash-item-container > StWidget {
1464
padding: 3px 6px;
1465
}
1466
1467
.dash-label { //osd tooltip
1468
// min-height: 32px - 6px * 2;
1469
border-radius: 2px;
1470
padding: 7px 8px;
1471
color: $fg_color;
1472
background-color: $base_color;
1473
box-shadow: $shadow_2;
1474
text-align: center;
1475
-x-offset: 8px;
1476
}
1477
1478
/* App Vault/Grid */
1479
.icon-grid {
1480
spacing: 30px;
1481
-shell-grid-horizontal-item-size: 136px;
1482
-shell-grid-vertical-item-size: 136px;
1483
1484
.overview-icon { icon-size: 96px; }
1485
}
1486
//.app-display { spacing: 20px; }
1487
1488
.app-view-controls { //favorties | all toggle container
1489
width: 320px;
1490
padding-bottom: 32px;
1491
}
1492
.app-view-control { //favorties | all toggle button
1493
padding: 0 16px;
1494
font-weight: bold;
1495
color: $secondary_inverse_fg_color;
1496
&:hover {
1497
color: $inverse_fg_color;
1498
background-color: $semi_inverse_fill_color !important;
1499
}
1500
&:active {
1501
color: $inverse_fg_color;
1502
background-color: $inverse_fill_color !important;
1503
}
1504
&:checked {
1505
color: $inverse_fg_color;
1506
background-color: rgba($bg_color, 0.01) !important;
1507
box-shadow: inset 0 2px 0 $inverse_fg_color;
1508
}
1509
&:first-child {
1510
border-right-width: 0;
1511
border-radius: 2px;
1512
&:checked { border-radius: 0; }
1513
}
1514
&:last-child {
1515
border-radius: 2px;
1516
&:checked { border-radius: 0; }
1517
}
1518
}
1519
1520
//Icon tile
1521
.search-provider-icon,
1522
.list-search-result {
1523
@extend %icon_tile;
1524
&:focus, &:selected, &:hover {
1525
background-color: $semi_inverse_fill_color;
1526
transition-duration: 0s;
1527
}
1528
&:active, &:checked {
1529
background-color: $inverse_fill_color;
1530
transition-duration: $longer_duration;
1531
}
1532
}
1533
.app-well-app,
1534
.app-well-app.app-folder,
1535
.show-apps,
1536
.grid-search-result {
1537
& .overview-icon {
1538
@extend %icon_tile;
1539
}
1540
&:hover .overview-icon,
1541
&:focus .overview-icon,
1542
&:selected .overview-icon {
1543
background-color: $semi_inverse_fill_color;
1544
transition-duration: 0s;
1545
border-image: none;
1546
background-image: none;
1547
}
1548
&:active .overview-icon,
1549
&:checked .overview-icon {
1550
background-color: $inverse_fill_color;
1551
box-shadow: $shadow_0;
1552
transition-duration: $longer_duration;
1553
}
1554
1555
}
1556
1557
.app-well-app-running-dot { //running apps indicator
1558
width: 32px; height: 2px;
1559
background-color: $inverse_fg_color;
1560
margin-bottom: 0;
1561
}
1562
1563
%icon_tile {
1564
color: $inverse_fg_color;
1565
border-radius: 2px;
1566
padding: 6px;
1567
border: none;
1568
transition-duration: $longer_duration;
1569
text-align: center;
1570
}
1571
1572
.app-well-app.app-folder > .overview-icon {
1573
background-color: $inverse_bg_color;
1574
}
1575
1576
.show-apps .show-apps-icon {
1577
color: $secondary_inverse_fg_color;
1578
}
1579
1580
.show-apps:hover .show-apps-icon,
1581
.show-apps:active .show-apps-icon,
1582
.show-apps:checked .show-apps-icon,
1583
.show-apps:focus .show-apps-icon {
1584
color: $inverse_fg_color;
1585
transition-duration: $longer_duration;
1586
}
1587
1588
1589
// Collections
1590
.app-folder-popup { //expanded collection
1591
-arrow-border-radius: 2px;
1592
-arrow-background-color: $inverse_bg_color;
1593
-arrow-base: 24px;
1594
-arrow-rise: 12px;
1595
}
1596
.app-folder-popup-bin { padding: 5px; }
1597
.app-folder-icon {
1598
padding: 5px;
1599
spacing-rows: 5px;
1600
spacing-columns: 5px;
1601
}
1602
1603
.page-indicator {
1604
padding: 15px 20px;
1605
1606
.page-indicator-icon {
1607
width: 12px;
1608
height: 12px;
1609
border-radius: 12px;
1610
background-image: none;
1611
background-color: scale-alpha($inverse_fg_color, $lower_opacity);
1612
}
1613
&:hover .page-indicator-icon {
1614
background-image: none;
1615
background-color: scale-alpha($inverse_fg_color, $middle_opacity);
1616
}
1617
&:active .page-indicator-icon {
1618
background-image: none;
1619
background-color: scale-alpha($inverse_fg_color, $higher_opacity);
1620
}
1621
&:checked .page-indicator-icon {
1622
background-image: none;
1623
background-color: $inverse_fg_color;
1624
transition-duration: 0s;
1625
}
1626
&:checked:active { background-image: none; }
1627
}
1628
1629
.no-frequent-applications-label { @extend %status_text; }
1630
1631
.app-well-app > .overview-icon.overview-icon-with-label,
1632
.grid-search-result .overview-icon.overview-icon-with-label {
1633
padding: 10px 8px 5px 8px;
1634
spacing: 4px;
1635
}
1636
1637
// Workspace pager
1638
.workspace-thumbnails { //container ala dash
1639
@extend %overview-panel;
1640
visible-width: 32px; //amount visible before hover
1641
spacing: 12px;
1642
padding: 12px;
1643
border-radius: 2px 0 0 2px;
1644
//border-width: 0; //fixme: can't have non unoform borders :(
1645
&:rtl { border-radius: 0 2px 2px 0;}
1646
}
1647
.workspace-thumbnail-indicator {
1648
border: 0 solid $inverse_fg_color;
1649
border-left-width: 2px;
1650
padding: 6px;
1651
border-radius: 0;
1652
}
1653
1654
//Some hacks I don't even
1655
.search-display > StBoxLayout,
1656
.all-apps,
1657
.frequent-apps > StBoxLayout {
1658
// horizontal padding to make sure scrollbars or dash don't overlap content
1659
padding: 0px 88px 10px 88px;
1660
}
1661
1662
%overview-panel {
1663
color: $inverse_fg_color;
1664
background-color: $inverse_bg_color;
1665
border: none;
1666
}
1667
1668
%status_text {
1669
@include font(display-2);
1670
color: $tertiary_inverse_fg_color;
1671
}
1672
1673
/* NOTIFICATIONS & MESSAGE TRAY */
1674
1675
.url-highlighter { link-color: $link_color; }
1676
1677
// Banners
1678
.notification-banner {
1679
font-size: 1em;
1680
width: 34em;
1681
min-height: $menuitem_size * 2;
1682
margin: 5px;
1683
border-radius: 2px;
1684
color: $fg_color;
1685
background-color: $base_color;
1686
border: none;
1687
box-shadow: $shadow_2;
1688
&:hover { background-color: $base_color; }
1689
&:focus { background-color: $base_color; }
1690
1691
.notification-icon { padding: 5px; }
1692
.notification-content { padding: 5px; spacing: 5px; }
1693
.secondary-icon { icon-size: em(16px); }
1694
.notification-actions {
1695
background-color: transparent;
1696
padding-top: 0;
1697
border-top: 1px solid $border_color;
1698
spacing: 1px;
1699
}
1700
.notification-button {
1701
min-height: 40px;
1702
padding: 0 16px;
1703
background-color: transparent;
1704
color: $secondary_fg_color;
1705
font-weight: 500;
1706
&:first-child { border-radius: 0 0 0 2px; }
1707
&:last-child { border-radius: 0 0 2px 0; }
1708
&:hover, &focus { background-color: $semi_fill_color; color: $fg_color; }
1709
&:active { background-color: $fill_color; color: $fg_color; }
1710
}
1711
}
1712
.summary-source-counter {
1713
font-size: 1em;
1714
font-weight: bold;
1715
height: 1.6em; width: 1.6em;
1716
-shell-counter-overlap-x: 3px;
1717
-shell-counter-overlap-y: 3px;
1718
background-color: $primary_color;
1719
color: $inverse_fg_color;
1720
border: 2px solid $inverse_fg_color;
1721
box-shadow: 0 2px 2px rgba(0,0,0,0.5);
1722
border-radius: 0.9em; // should be 0.8 but whatever; wish I could do 50%;
1723
}
1724
1725
.secondary-icon { icon-size: em(16px); }
1726
1727
//chat bubbles
1728
.chat-body { spacing: 5px; }
1729
.chat-response { margin: 5px; }
1730
.chat-log-message { color: $fg_color; }
1731
.chat-new-group { padding-top: 1em; }
1732
.chat-received {
1733
padding-left: 4px;
1734
&:rtl { padding-left: 0px; padding-right: 4px; }
1735
}
1736
.chat-sent {
1737
padding-left: 18pt;
1738
color: $secondary_fg_color;
1739
&:rtl { padding-left: 0; padding-right: 18pt; }
1740
}
1741
.chat-meta-message {
1742
padding-left: 4px;
1743
@include font(caption);
1744
color: $tertiary_fg_color;
1745
&:rtl { padding-left: 0; padding-right: 4px; }
1746
}
1747
1748
//hotplug
1749
.hotplug-transient-box {
1750
spacing: 6px;
1751
padding: 2px 72px 2px 12px;
1752
}
1753
.hotplug-notification-item {
1754
padding: 2px 10px;
1755
&:focus { padding: 1px 71px 1px 11px; }
1756
}
1757
1758
.hotplug-notification-item-icon {
1759
icon-size: 24px;
1760
padding: 2px 5px;
1761
}
1762
1763
.hotplug-resident-box { spacing: 8px; }
1764
1765
.hotplug-resident-mount {
1766
spacing: 8px;
1767
border-radius: 2px;
1768
&:hover { background-color: $semi_fill_color; }
1769
&:active { background-color: $fill_color; }
1770
}
1771
1772
.hotplug-resident-mount-label {
1773
color: inherit;
1774
padding-left: 6px;
1775
}
1776
1777
.hotplug-resident-mount-icon {
1778
icon-size: 24px;
1779
padding-left: 6px;
1780
}
1781
1782
.hotplug-resident-eject-icon {
1783
icon-size: 16px;
1784
}
1785
1786
.hotplug-resident-eject-button {
1787
padding: 7px;
1788
border-radius: 2px;
1789
color: $fg_color;
1790
}
1791
1792
/* Eeeky things */
1793
1794
$legacy_icon_size: 24px;
1795
1796
.legacy-tray {
1797
background-color: $bg_color;
1798
color: $inverse_fg_color;
1799
border: none;
1800
border-bottom-width: 0;
1801
&:ltr { border-radius: 0 2px 0 0; border-left-width: 0; }
1802
&:rtl { border-radius: 2px 0 0 0; border-right-width: 0; }
1803
}
1804
1805
.legacy-tray-handle,
1806
.legacy-tray-icon {
1807
padding: 6px;
1808
& StIcon { icon-size: $legacy_icon_size; }
1809
&:hover,&:focus { background-color: $semi_inverse_fill_color; }
1810
&:active { background-color: $inverse_fill_color; }
1811
}
1812
1813
.legacy-tray-icon-box {
1814
spacing: 12px;
1815
&:ltr { padding-left: 12px; }
1816
&:rtl { padding-right: 12px; }
1817
& StButton { width: $legacy_icon_size; height: $legacy_icon_size }
1818
}
1819
1820
//magnifier
1821
1822
.magnifier-zoom-region {
1823
border: 2px solid $primary_color;
1824
&.full-screen { border-width: 0; }
1825
}
1826
1827
//Keyboard
1828
/* On-screen Keyboard */
1829
1830
#keyboard {
1831
background-color: $alt_bg_color;
1832
}
1833
1834
.keyboard-layout {
1835
spacing: 10px;
1836
padding: 10px;
1837
}
1838
1839
.keyboard-row { spacing: 15px; }
1840
1841
.keyboard-key {
1842
min-height: $medium_size * 2;
1843
min-width: $medium_size * 2;
1844
font-size: 2em;
1845
font-weight: 500;
1846
border-radius: 2px;
1847
border: none;
1848
color: inherit;
1849
@include button(normal);
1850
&:focus { @include button(focus); }
1851
&:hover,&:checked { @include button(hover); }
1852
&:active { @include button(active);}
1853
&:grayed { //FIXME
1854
background-color: $alt_bg_color;
1855
color: $inverse_fg_color;
1856
border-color: $alt_bg_color;
1857
}
1858
}
1859
1860
.keyboard-subkeys { //long press on a key popup
1861
color: inherit;
1862
padding: 5px;
1863
-arrow-border-radius: 0;
1864
-arrow-background-color: transparent;
1865
-arrow-border-width: 0;
1866
-arrow-border-color: transparent;
1867
-arrow-base: 0;
1868
-arrow-rise: 0;
1869
-boxpointer-gap: 5px;
1870
background-color: $base_color;
1871
border-radius: 2px;
1872
box-shadow: $shadow_2;
1873
}
1874
1875
// IBus Candidate Popup
1876
1877
.candidate-popup-content {
1878
padding: 8px;
1879
spacing: 0;
1880
}
1881
1882
.candidate-index {
1883
padding: 0 4px 0 0;
1884
color: $tertiary_fg_color;
1885
.candidate-box:selected & { color: $tertiary_inverse_fg_color; }
1886
}
1887
1888
.candidate-box {
1889
transition-duration: 0s; // FIXME: needs more natural transitions
1890
min-height: $menuitem_size;
1891
padding: 0 8px;
1892
border-radius: 2px;
1893
&:hover { background-color: $semi_fill_color; color: $fg_color; }
1894
&:active { background-color: $fill_color; color: $fg_color; }
1895
&:selected { background-color: $primary_color; color: $inverse_fg_color; }
1896
}
1897
1898
.candidate-page-button-box {
1899
height: $menuitem_size;
1900
.vertical & { padding-top: 0; }
1901
.horizontal & { padding-left: 0; }
1902
}
1903
1904
.candidate-page-button {
1905
min-width: $menuitem_size;
1906
min-height: $menuitem_size;
1907
padding: 0;
1908
}
1909
1910
.candidate-page-button-previous { border-radius: 2px; border-right-width: 0; }
1911
.candidate-page-button-next { border-radius: 2px; }
1912
.candidate-page-button-icon { icon-size: em(16px); }
1913
1914
/* Auth Dialogs & Screen Shield */
1915
1916
.framed-user-icon {
1917
background-size: contain;
1918
border: none;
1919
color: $inverse_fg_color;
1920
border-radius: 2px;
1921
&:hover {
1922
border-color: $inverse_fg_color;
1923
color: $inverse_fg_color;
1924
}
1925
}
1926
1927
// LOGIN DIALOG
1928
1929
.login-dialog-banner-view {
1930
padding-top: 24px;
1931
max-width: 23em;
1932
}
1933
1934
.login-dialog {
1935
//reset
1936
border: none;
1937
background-color: transparent;
1938
1939
StEntry {
1940
color: $inverse_fg_color;
1941
selection-background-color: $inverse_fill_color;
1942
selected-color: $inverse_fg_color;
1943
@include entry(normal, $fc:$inverse_fill_color);
1944
&:focus { @include entry(focus, $fc:$inverse_fg_color); }
1945
&:insensitive {
1946
@include entry(insensitive, $fc:$disabled_inverse_fill_color);
1947
color: $disabled_inverse_fg_color;
1948
}
1949
}
1950
1951
.modal-dialog-button-box { spacing: 3px; }
1952
.modal-dialog-button {
1953
padding: 0 16px;
1954
@include button(flat-normal, $tc: $inverse_fg_color);
1955
&:hover,&:focus { @include button(flat-hover, $tc: $inverse_fg_color); }
1956
&:active { @include button(flat-active, $tc: $inverse_fg_color); }
1957
&:insensitive { @include button(flat-insensitive, $tc: $inverse_fg_color); }
1958
1959
&:default {
1960
@include button(normal, $c: $suggested_color, $tc: $inverse_fg_color);
1961
&:hover,&:focus { @include button(hover, $c: $suggested_color, $tc: $inverse_fg_color); }
1962
&:active { @include button(active, $c: $suggested_color, $tc: $inverse_fg_color); }
1963
&:insensitive { @include button(insensitive, $c: $disabled_inverse_fill_color, $tc: $disabled_inverse_fg_color); }
1964
}
1965
}
1966
}
1967
1968
.login-dialog-logo-bin { padding: 24px 0px; }
1969
.login-dialog-banner { color: $secondary_inverse_fg_color; }
1970
.login-dialog-button-box { spacing: 5px; }
1971
.login-dialog-message-warning { color: $warning_color; }
1972
.login-dialog-message-hint { padding-top: 0; padding-bottom: 20px; }
1973
.login-dialog-user-selection-box {
1974
padding: 100px 0px;
1975
.login-dialog-not-listed-label {
1976
padding-left: 2px;
1977
.login-dialog-not-listed-button:focus &,
1978
.login-dialog-not-listed-button:hover & {
1979
color: $inverse_fg_color;
1980
}
1981
}
1982
}
1983
.login-dialog-not-listed-label {
1984
font-size: 1em;
1985
font-weight: bold;
1986
color: $secondary_inverse_fg_color;
1987
padding-top: 1em;
1988
&:hover { color: $inverse_fg_color; }
1989
&:focus { background-color: $semi_inverse_fill_color; }
1990
}
1991
1992
.login-dialog-user-list-view { -st-vfade-offset: 1em; }
1993
.login-dialog-user-list {
1994
spacing: 12px;
1995
padding: .2em;
1996
width: 23em;
1997
&:expanded .login-dialog-user-list-item:focus { background-color: $semi_inverse_fill_color; color: $inverse_fg_color; }
1998
&:expanded .login-dialog-user-list-item:hover { background-color: $semi_inverse_fill_color; color: $inverse_fg_color; }
1999
&:expanded .login-dialog-user-list-item:active { background-color: $inverse_fill_color; color: $inverse_fg_color; }
2000
&:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $inverse_fg_color; }
2001
}
2002
.login-dialog-user-list-item {
2003
border-radius: 2px;
2004
padding: 4px 4px 0;
2005
color: $secondary_inverse_fg_color;
2006
&:ltr { padding-right: 1em; }
2007
&:rtl { padding-left: 1em; }
2008
&:hover { background-color: $semi_inverse_fill_color; color: $inverse_fg_color; }
2009
&:active { background-color: $inverse_fill_color; color: $inverse_fg_color; }
2010
.login-dialog-timed-login-indicator {
2011
height: 2px;
2012
margin: 2px 0 0 0;
2013
background-color: $inverse_fg_color;
2014
}
2015
&:focus .login-dialog-timed-login-indicator { background-color: $inverse_fg_color; }
2016
}
2017
2018
.login-dialog-username,
2019
.user-widget-label {
2020
color: $inverse_fg_color;
2021
@include font(title);
2022
text-align: left;
2023
padding-left: 15px;
2024
}
2025
.user-widget-label {
2026
&:ltr { padding-left: 18px; }
2027
&:rtl { padding-right: 18px; }
2028
}
2029
2030
.login-dialog-prompt-layout {
2031
padding-top: 24px;
2032
padding-bottom: 12px;
2033
spacing: 8px;
2034
width: 23em;
2035
}
2036
2037
.login-dialog-prompt-label {
2038
color: $tertiary_inverse_fg_color;
2039
font-size: 1em;
2040
padding-top: 1em;
2041
}
2042
2043
.login-dialog-session-list-button StIcon {
2044
icon-size: 1.25em;
2045
}
2046
2047
.login-dialog-session-list-button {
2048
color: $secondary_inverse_fg_color;
2049
&:hover,&:focus { color: $inverse_fg_color; }
2050
&:active { color: $inverse_fg_color; }
2051
}
2052
2053
//SCREEN SHIELD
2054
2055
.screen-shield-arrows {
2056
padding-bottom: 3em;
2057
}
2058
2059
.screen-shield-arrows Gjs_Arrow {
2060
color: white;
2061
width: 80px;
2062
height: 48px;
2063
-arrow-thickness: 12px;
2064
-arrow-shadow: $shadow_1;
2065
}
2066
2067
.screen-shield-clock {
2068
color: white;
2069
text-shadow: $shadow_1;
2070
font-weight: normal;
2071
text-align: center;
2072
padding-bottom: 1.5em;
2073
}
2074
2075
.screen-shield-clock-time {
2076
@include font(display-4);
2077
text-shadow: $shadow_1;
2078
}
2079
2080
.screen-shield-clock-date { @include font(display-2); }
2081
2082
.screen-shield-notifications-container {
2083
spacing: 6px;
2084
width: 30em;
2085
background-color: transparent;
2086
max-height: 500px;
2087
.summary-notification-stack-scrollview {
2088
padding-top: 0;
2089
padding-bottom: 0;
2090
}
2091
2092
.notification,
2093
.screen-shield-notification-source {
2094
padding: 8px;
2095
border: none;
2096
background-color: $alt_bg_color;
2097
color: $inverse_fg_color;
2098
border-radius: 2px;
2099
}
2100
.notification { margin-right: 16px; } //compensate for space allocated to the scrollbar
2101
}
2102
2103
2104
.screen-shield-notification-label {
2105
min-height: $small_size - 2px;
2106
padding: 2px 0px 0px 16px;
2107
font-weight: bold;
2108
}
2109
2110
.screen-shield-notification-count-text {
2111
min-height: $small_size - 2px;
2112
padding: 2px 0px 0px 16px;
2113
color: $secondary_inverse_fg_color;
2114
}
2115
2116
#panel.lock-screen { background-color: $alt_bg_color; }
2117
2118
.screen-shield-background { //just the shadow, really
2119
background: black;
2120
box-shadow: $shadow_5;
2121
}
2122
2123
#lockDialogGroup {
2124
background: #607D8B url("assets/noise-texture.svg");
2125
background-size: cover;
2126
}
2127
2128
#screenShieldNotifications {
2129
StScrollBar { @extend %overview_scrollbar; }
2130
}
2131
2132
2133
// Looking Glass
2134
#LookingGlassDialog {
2135
background-color: $base_color;
2136
spacing: 4px;
2137
padding: 0;
2138
border: none;
2139
border-radius: 2px;
2140
box-shadow: $shadow_4;
2141
& > #Toolbar {
2142
padding: 0 8px;
2143
border: none;
2144
border-radius: 0;
2145
background-color: rgba($base_color, 0.01);
2146
box-shadow: inset 0 -1px 0 $border_color;
2147
}
2148
.labels { spacing: 0; }
2149
.notebook-tab {
2150
-natural-hpadding: 12px;
2151
-minimum-hpadding: 6px;
2152
font-weight: bold;
2153
color: $tertiary_fg_color;
2154
transition-duration: $longer_duration;
2155
padding-left: 16px;
2156
padding-right: 16px;
2157
min-height: $medium_size;
2158
padding: 0 16px * 2;
2159
&:hover {
2160
box-shadow: inset 0 -2px 0px $fill_color;
2161
color: $fg_color;
2162
text-shadow: none;
2163
}
2164
&:selected {
2165
border-bottom-width: 0;
2166
border-color: transparent;
2167
background-color: rgba($base_color, 0.01);
2168
box-shadow: inset 0 -2px 0px $primary_color;
2169
color: $fg_color;
2170
text-shadow: none;
2171
}
2172
}
2173
StBoxLayout#EvalBox { padding: 4px; spacing: 4px; }
2174
StBoxLayout#ResultsArea { spacing: 4px; }
2175
}
2176
2177
.lg-dialog {
2178
StEntry {
2179
selection-background-color: $primary_color;
2180
selected-color: $inverse_fg_color;
2181
}
2182
.shell-link {
2183
color: $link_color;
2184
&:hover { color: $link_color; }
2185
}
2186
}
2187
2188
.lg-completions-text {
2189
font-size: 1em;
2190
font-style: italic;
2191
}
2192
2193
.lg-obj-inspector-title {
2194
spacing: 4px;
2195
}
2196
2197
.lg-obj-inspector-button {
2198
min-height: $medium_size;
2199
padding: 0 16px;
2200
border: none;
2201
border-radius: 2px;
2202
@include font(button);
2203
@include button(flat-normal);
2204
&:hover { @include button(flat-hover); }
2205
&:active { @include button(flat-active); }
2206
&:insensitive { @include button(flat-insensitive); }
2207
&:focus { @include button(flat-focus); }
2208
&:hover { border: none; }
2209
}
2210
2211
#lookingGlassExtensions { padding: 4px; }
2212
2213
.lg-extensions-list {
2214
padding: 4px;
2215
spacing: 6px;
2216
}
2217
2218
.lg-extension {
2219
border: none;
2220
border-radius: 2px;
2221
padding: 4px;
2222
}
2223
2224
.lg-extension-name {
2225
@include font(headline);
2226
}
2227
2228
.lg-extension-meta {
2229
spacing: 6px;
2230
}
2231
2232
#LookingGlassPropertyInspector {
2233
background: $base_color;
2234
border: none;
2235
border-radius: 2px;
2236
padding: 6px;
2237
box-shadow: $shadow_4;
2238
}
2239