_common.scss
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: $hint_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: $inverse_hint_fg_color;
141
&:hover { background-color: $inverse_secondary_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: $hint_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: $hint_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: $hint_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: $hint_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: $hint_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: $inverse_disabled_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: $hint_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
.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: $divider_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: $hint_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: $divider_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: rgba($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: $inverse_secondary_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: $inverse_secondary_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: $divider_color; }
972
&:active {
973
color: $fg_color;
974
background-color: $track_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: $divider_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: $divider_color; }
1019
&:active { background-color: $track_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: $divider_color; }
1039
// &:active { background-color: $track_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: $hint_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_secondary_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: $hint_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: $divider_color; }
1104
&:active { background-color: $track_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: $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
color: $fg_color;
1132
icon-size: 16px;
1133
-st-icon-style: requested;
1134
margin: 4px 0px 4px 4px;
1135
&:rtl { margin: 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: $secondary_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: $divider_color;
1183
}
1184
1185
.message-content *:active > StIcon {
1186
color: $fg_color;
1187
background-color: $track_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: $divider_color; }
1196
&:active { color: $fg_color; background-color: $track_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 0px 8px 4px !important;
1206
&:rtl { margin: 8px 4px 8px 0px !important; }
1207
&.fallback {
1208
icon-size: 16px !important;
1209
padding: 8px;
1210
border: none;
1211
border-radius: 2px;
1212
background-color: $divider_color;
1213
color: $hint_fg_color;
1214
}
1215
}
1216
1217
1218
// a little unstructured mess:
1219
1220
.system-switch-user-submenu-icon.user-icon {
1221
icon-size: 20px;
1222
padding: 0 2px;
1223
}
1224
.system-switch-user-submenu-icon.default-icon {
1225
icon-size: 16px;
1226
padding: 0 4px;
1227
}
1228
1229
#appMenu {
1230
spinner-image: url("process-working.svg");
1231
spacing: 4px;
1232
1233
.label-shadow { color: transparent; }
1234
}
1235
1236
.aggregate-menu {
1237
min-width: 280px;
1238
.popup-menu-icon { padding: 0 4px; }
1239
}
1240
1241
.system-menu-action {
1242
color: $secondary_fg_color;
1243
border-radius: 100px; /* wish we could do 50% */
1244
padding: ($large_size - 16px) / 2;
1245
border: none;
1246
1247
&:hover, &:focus {
1248
background-color: $divider_color;
1249
color: $fg_color;
1250
border: none;
1251
padding: ($large_size - 16px) / 2;
1252
}
1253
&:active { background-color: $track_color; color: $fg_color; }
1254
1255
& > StIcon { icon-size: 16px; }
1256
}
1257
1258
//Activities Ripples
1259
.ripple-box {
1260
width: 48px;
1261
height: 48px;
1262
background-image: url("assets/corner-ripple-ltr.svg");
1263
background-size: contain;
1264
}
1265
1266
.ripple-box:rtl {
1267
background-image: url("assets/corner-ripple-rtl.svg");
1268
}
1269
1270
// not really top bar only
1271
.popup-menu-arrow { width: 16px; height: 16px; }
1272
.popup-menu-icon { icon-size: em(16px); }
1273
1274
//close buttons
1275
1276
.window-close {
1277
height: $medium_size;
1278
width: $medium_size;
1279
-st-background-image-shadow: $shadow_1;
1280
background-image: url("assets/window-close.svg");
1281
background-size: $medium_size;
1282
&:hover { -st-background-image-shadow: $shadow_2; }
1283
&:active { background-image: url("assets/window-close-active.svg"); }
1284
}
1285
.window-close {
1286
-shell-close-overlap: $medium_size / 2;
1287
&:rtl { -st-background-image-shadow: $shadow_1; }
1288
&:rtl:hover { -st-background-image-shadow: $shadow_2; }
1289
}
1290
1291
/* NETWORK DIALOGS */
1292
1293
.nm-dialog {
1294
max-height: 500px;
1295
min-height: 450px;
1296
min-width: 470px;
1297
}
1298
1299
.nm-dialog-content {
1300
spacing: 20px;
1301
padding: 24px;
1302
}
1303
.nm-dialog-header-hbox { spacing: 10px; }
1304
.nm-dialog-airplane-box { spacing: 12px; }
1305
1306
.nm-dialog-airplane-headline {
1307
font-weight: bold;
1308
text-align: center;
1309
}
1310
1311
.nm-dialog-airplane-text { color: $fg_color; }
1312
.nm-dialog-header-icon { icon-size: 32px; }
1313
.nm-dialog-scroll-view { border: none; }
1314
.nm-dialog-header { @include font(title); }
1315
1316
.nm-dialog-item {
1317
font-size: 1em;
1318
border-bottom: none;
1319
border-radius: 2px;
1320
padding: 12px;
1321
spacing: 20px;
1322
&:hover, &:focus { background-color: $divider_color; }
1323
&:active { background-color: $track_color; }
1324
}
1325
1326
.nm-dialog-item:selected {
1327
background-color: $primary_color;
1328
color: $inverse_fg_color;
1329
}
1330
1331
.nm-dialog-icons { spacing: .5em; }
1332
.nm-dialog-icon { icon-size: 16px; }
1333
.no-networks-label { color: $hint_fg_color; }
1334
.no-networks-box { spacing: 12px; }
1335
1336
/* OVERVIEW */
1337
1338
#overview {
1339
spacing: 24px; //
1340
StScrollBar { @extend %overview_scrollbar; }
1341
}
1342
1343
.overview-controls {
1344
padding-bottom: 32px;
1345
}
1346
1347
.window-picker { //container around window thumbnails
1348
-horizontal-spacing: 32px;
1349
-vertical-spacing: 32px;
1350
padding-left: 32px;
1351
padding-right: 32px;
1352
padding-bottom: 48px;
1353
1354
&.external-monitor { padding: 32px; }
1355
}
1356
1357
.window-clone-border {
1358
border: 4px solid $inverse_track_color;
1359
border-radius: 2px;
1360
// For window decorations with round corners we can't match
1361
// the exact shape when the window is scaled. So apply a shadow
1362
// to fix that case
1363
box-shadow: inset 0 0 0 1px $inverse_track_color;
1364
}
1365
.window-caption {
1366
spacing: 25px;
1367
color: $inverse_fg_color;
1368
background-color: transparent;
1369
border-radius: 2px;
1370
padding: 4px 8px;
1371
-shell-caption-spacing: 12px;
1372
&:hover { background-color: $inverse_track_color; color: $inverse_fg_color; }
1373
}
1374
1375
//search entry
1376
.search-entry {
1377
width: 320px - 8px * 2;
1378
padding: 0 8px;
1379
border-radius: 0;
1380
color: $inverse_hint_fg_color;
1381
selection-background-color: $inverse_track_color;
1382
selected-color: $inverse_fg_color;
1383
@include entry(normal,$fc:$inverse_track_color);
1384
&:focus {
1385
@include entry(focus,$fc:$inverse_fg_color);
1386
padding: 0 8px;
1387
border-width: 0;
1388
color: $inverse_fg_color;
1389
}
1390
1391
.search-entry-icon { icon-size: 16px; padding: 0 0; color: $inverse_hint_fg_color; }
1392
1393
&:hover, &:focus {
1394
.search-entry-icon { color: $inverse_fg_color; }
1395
}
1396
}
1397
1398
//search results
1399
1400
#searchResultsBin {
1401
max-width: 1000px;
1402
}
1403
1404
#searchResultsContent {
1405
padding-left: 20px;
1406
padding-right: 20px;
1407
spacing: 16px;
1408
}
1409
1410
.search-section { spacing: 16px; } // This should be equal to #searchResultsContent spacing
1411
.search-section-content { spacing: 32px; } // This is the space between the provider icon and the results container
1412
.search-statustext { // "no results"
1413
@extend %status_text;
1414
}
1415
.list-search-results { spacing: 3px; }
1416
1417
.search-section-separator {
1418
-gradient-height: 1px;
1419
-gradient-start: rgba(255,255,255,0);
1420
-gradient-end: rgba(255,255,255,0.4);
1421
-margin-horizontal: 1.5em;
1422
height: 1px;
1423
}
1424
1425
.list-search-result-content { spacing: 12px; padding: 12px; }
1426
.list-search-result-title { @include font(headline); color: $inverse_fg_color; }
1427
.list-search-result-description { color: $inverse_secondary_fg_color; }
1428
.search-provider-icon { padding: 15px; }
1429
.search-provider-icon-more {
1430
width: 16px;
1431
height: 16px;
1432
background-image: url("assets/more-results.svg");
1433
}
1434
1435
1436
/* DASHBOARD */
1437
1438
#dash {
1439
font-size: 1em;
1440
color: $inverse_fg_color;
1441
background-color: $inverse_bg_color;
1442
padding: 3px 0;
1443
border: none;
1444
border-left: 0px;
1445
border-radius: 0px 2px 2px 0px;
1446
1447
&:rtl {
1448
border-radius: 2px 0 0 2px;
1449
}
1450
1451
.placeholder {
1452
background-image: url("assets/dash-placeholder.svg");
1453
background-size: contain;
1454
height: 24px;
1455
}
1456
1457
.empty-dash-drop-target {
1458
width: 24px;
1459
height: 24px;
1460
}
1461
1462
}
1463
1464
.dash-item-container > StWidget {
1465
padding: 3px 6px;
1466
}
1467
1468
.dash-label { //osd tooltip
1469
// min-height: 32px - 6px * 2;
1470
border-radius: 2px;
1471
padding: 7px 8px;
1472
color: $fg_color;
1473
background-color: $base_color;
1474
box-shadow: $shadow_2;
1475
text-align: center;
1476
-x-offset: 8px;
1477
}
1478
1479
/* App Vault/Grid */
1480
.icon-grid {
1481
spacing: 30px;
1482
-shell-grid-horizontal-item-size: 136px;
1483
-shell-grid-vertical-item-size: 136px;
1484
1485
.overview-icon { icon-size: 96px; }
1486
}
1487
//.app-display { spacing: 20px; }
1488
1489
.app-view-controls { //favorties | all toggle container
1490
width: 320px;
1491
padding-bottom: 32px;
1492
}
1493
.app-view-control { //favorties | all toggle button
1494
padding: 0 16px;
1495
font-weight: bold;
1496
color: $inverse_secondary_fg_color;
1497
&:hover {
1498
color: $inverse_fg_color;
1499
background-color: $inverse_divider_color !important;
1500
}
1501
&:active {
1502
color: $inverse_fg_color;
1503
background-color: $inverse_track_color !important;
1504
}
1505
&:checked {
1506
color: $inverse_fg_color;
1507
background-color: rgba($bg_color, 0.01) !important;
1508
box-shadow: inset 0 2px 0 $inverse_fg_color;
1509
}
1510
&:first-child {
1511
border-right-width: 0;
1512
border-radius: 2px;
1513
&:checked { border-radius: 0; }
1514
}
1515
&:last-child {
1516
border-radius: 2px;
1517
&:checked { border-radius: 0; }
1518
}
1519
}
1520
1521
//Icon tile
1522
.search-provider-icon,
1523
.list-search-result {
1524
@extend %icon_tile;
1525
&:focus, &:selected, &:hover {
1526
background-color: $inverse_divider_color;
1527
transition-duration: 0s;
1528
}
1529
&:active, &:checked {
1530
background-color: $inverse_track_color;
1531
transition-duration: $longer_duration;
1532
}
1533
}
1534
.app-well-app,
1535
.app-well-app.app-folder,
1536
.show-apps,
1537
.grid-search-result {
1538
& .overview-icon {
1539
@extend %icon_tile;
1540
}
1541
&:hover .overview-icon,
1542
&:focus .overview-icon,
1543
&:selected .overview-icon {
1544
background-color: $inverse_divider_color;
1545
transition-duration: 0s;
1546
border-image: none;
1547
background-image: none;
1548
}
1549
&:active .overview-icon,
1550
&:checked .overview-icon {
1551
background-color: $inverse_track_color;
1552
box-shadow: $shadow_0;
1553
transition-duration: $longer_duration;
1554
}
1555
1556
}
1557
1558
.app-well-app-running-dot { //running apps indicator
1559
width: 32px; height: 2px;
1560
background-color: $inverse_fg_color;
1561
margin-bottom: 0;
1562
}
1563
1564
%icon_tile {
1565
color: $inverse_fg_color;
1566
border-radius: 2px;
1567
padding: 6px;
1568
border: none;
1569
transition-duration: $longer_duration;
1570
text-align: center;
1571
}
1572
1573
.app-well-app.app-folder > .overview-icon {
1574
background-color: $inverse_bg_color;
1575
}
1576
1577
.show-apps .show-apps-icon {
1578
color: $inverse_secondary_fg_color;
1579
}
1580
1581
.show-apps:hover .show-apps-icon,
1582
.show-apps:active .show-apps-icon,
1583
.show-apps:checked .show-apps-icon,
1584
.show-apps:focus .show-apps-icon {
1585
color: $inverse_fg_color;
1586
transition-duration: $longer_duration;
1587
}
1588
1589
1590
// Collections
1591
.app-folder-popup { //expanded collection
1592
-arrow-border-radius: 2px;
1593
-arrow-background-color: $inverse_bg_color;
1594
-arrow-base: 24px;
1595
-arrow-rise: 12px;
1596
}
1597
.app-folder-popup-bin { padding: 5px; }
1598
.app-folder-icon {
1599
padding: 5px;
1600
spacing-rows: 5px;
1601
spacing-columns: 5px;
1602
}
1603
1604
.page-indicator {
1605
padding: 15px 20px;
1606
1607
.page-indicator-icon {
1608
width: 12px;
1609
height: 12px;
1610
border-radius: 12px;
1611
background-image: none;
1612
background-color: $inverse_disabled_secondary_fg_color;
1613
}
1614
&:hover .page-indicator-icon {
1615
background-image: none;
1616
background-color: $inverse_disabled_fg_color;
1617
}
1618
&:active .page-indicator-icon {
1619
background-image: none;
1620
background-color: $inverse_secondary_fg_color;
1621
}
1622
&:checked .page-indicator-icon {
1623
background-image: none;
1624
background-color: $inverse_fg_color;
1625
transition-duration: 0s;
1626
}
1627
&:checked:active { background-image: none; }
1628
}
1629
1630
.no-frequent-applications-label { @extend %status_text; }
1631
1632
.app-well-app > .overview-icon.overview-icon-with-label,
1633
.grid-search-result .overview-icon.overview-icon-with-label {
1634
padding: 10px 8px 5px 8px;
1635
spacing: 4px;
1636
}
1637
1638
// Workspace pager
1639
.workspace-thumbnails { //container ala dash
1640
@extend %overview-panel;
1641
visible-width: 32px; //amount visible before hover
1642
spacing: 12px;
1643
padding: 12px;
1644
border-radius: 2px 0 0 2px;
1645
//border-width: 0; //fixme: can't have non unoform borders :(
1646
&:rtl { border-radius: 0 2px 2px 0;}
1647
}
1648
.workspace-thumbnail-indicator {
1649
border: 0 solid $inverse_fg_color;
1650
border-left-width: 2px;
1651
padding: 6px;
1652
border-radius: 0;
1653
}
1654
1655
//Some hacks I don't even
1656
.search-display > StBoxLayout,
1657
.all-apps,
1658
.frequent-apps > StBoxLayout {
1659
// horizontal padding to make sure scrollbars or dash don't overlap content
1660
padding: 0px 88px 10px 88px;
1661
}
1662
1663
%overview-panel {
1664
color: $inverse_fg_color;
1665
background-color: $inverse_bg_color;
1666
border: none;
1667
}
1668
1669
%status_text {
1670
@include font(display-2);
1671
color: $inverse_hint_fg_color;
1672
}
1673
1674
/* NOTIFICATIONS & MESSAGE TRAY */
1675
1676
.url-highlighter { link-color: $link_color; }
1677
1678
// Banners
1679
.notification-banner {
1680
font-size: 1em;
1681
width: 34em;
1682
min-height: $menuitem_size * 2;
1683
margin: 5px;
1684
border-radius: 2px;
1685
color: $fg_color;
1686
background-color: $base_color;
1687
border: none;
1688
box-shadow: $shadow_2;
1689
&:hover { background-color: $base_color; }
1690
&:focus { background-color: $base_color; }
1691
1692
.notification-icon { padding: 5px; }
1693
.notification-content { padding: 5px; spacing: 5px; }
1694
.secondary-icon { icon-size: em(16px); }
1695
.notification-actions {
1696
background-color: transparent;
1697
padding-top: 0;
1698
border-top: 1px solid $border_color;
1699
spacing: 1px;
1700
}
1701
.notification-button {
1702
min-height: 40px;
1703
padding: 0 16px;
1704
background-color: transparent;
1705
color: $secondary_fg_color;
1706
font-weight: 500;
1707
&:first-child { border-radius: 0 0 0 2px; }
1708
&:last-child { border-radius: 0 0 2px 0; }
1709
&:hover, &focus { background-color: $divider_color; color: $fg_color; }
1710
&:active { background-color: $track_color; color: $fg_color; }
1711
}
1712
}
1713
.summary-source-counter {
1714
font-size: 1em;
1715
font-weight: bold;
1716
height: 1.6em; width: 1.6em;
1717
-shell-counter-overlap-x: 3px;
1718
-shell-counter-overlap-y: 3px;
1719
background-color: $primary_color;
1720
color: $inverse_fg_color;
1721
border: 2px solid $inverse_fg_color;
1722
box-shadow: 0 2px 2px rgba(0,0,0,0.5);
1723
border-radius: 0.9em; // should be 0.8 but whatever; wish I could do 50%;
1724
}
1725
1726
.secondary-icon { icon-size: em(16px); }
1727
1728
//chat bubbles
1729
.chat-body { spacing: 5px; }
1730
.chat-response { margin: 5px; }
1731
.chat-log-message { color: $fg_color; }
1732
.chat-new-group { padding-top: 1em; }
1733
.chat-received {
1734
padding-left: 4px;
1735
&:rtl { padding-left: 0px; padding-right: 4px; }
1736
}
1737
.chat-sent {
1738
padding-left: 18pt;
1739
color: $secondary_fg_color;
1740
&:rtl { padding-left: 0; padding-right: 18pt; }
1741
}
1742
.chat-meta-message {
1743
padding-left: 4px;
1744
@include font(caption);
1745
color: $hint_fg_color;
1746
&:rtl { padding-left: 0; padding-right: 4px; }
1747
}
1748
1749
//hotplug
1750
.hotplug-transient-box {
1751
spacing: 6px;
1752
padding: 2px 72px 2px 12px;
1753
}
1754
.hotplug-notification-item {
1755
padding: 2px 10px;
1756
&:focus { padding: 1px 71px 1px 11px; }
1757
}
1758
1759
.hotplug-notification-item-icon {
1760
icon-size: 24px;
1761
padding: 2px 5px;
1762
}
1763
1764
.hotplug-resident-box { spacing: 8px; }
1765
1766
.hotplug-resident-mount {
1767
spacing: 8px;
1768
border-radius: 2px;
1769
&:hover { background-color: $divider_color; }
1770
&:active { background-color: $track_color; }
1771
}
1772
1773
.hotplug-resident-mount-label {
1774
color: inherit;
1775
padding-left: 6px;
1776
}
1777
1778
.hotplug-resident-mount-icon {
1779
icon-size: 24px;
1780
padding-left: 6px;
1781
}
1782
1783
.hotplug-resident-eject-icon {
1784
icon-size: 16px;
1785
}
1786
1787
.hotplug-resident-eject-button {
1788
padding: 7px;
1789
border-radius: 2px;
1790
color: $fg_color;
1791
}
1792
1793
/* Eeeky things */
1794
1795
$legacy_icon_size: 24px;
1796
1797
.legacy-tray {
1798
background-color: $bg_color;
1799
color: $inverse_fg_color;
1800
border: none;
1801
border-bottom-width: 0;
1802
&:ltr { border-radius: 0 2px 0 0; border-left-width: 0; }
1803
&:rtl { border-radius: 2px 0 0 0; border-right-width: 0; }
1804
}
1805
1806
.legacy-tray-handle,
1807
.legacy-tray-icon {
1808
padding: 6px;
1809
& StIcon { icon-size: $legacy_icon_size; }
1810
&:hover,&:focus { background-color: $inverse_divider_color; }
1811
&:active { background-color: $inverse_track_color; }
1812
}
1813
1814
.legacy-tray-icon-box {
1815
spacing: 12px;
1816
&:ltr { padding-left: 12px; }
1817
&:rtl { padding-right: 12px; }
1818
& StButton { width: $legacy_icon_size; height: $legacy_icon_size }
1819
}
1820
1821
//magnifier
1822
1823
.magnifier-zoom-region {
1824
border: 2px solid $primary_color;
1825
&.full-screen { border-width: 0; }
1826
}
1827
1828
//Keyboard
1829
/* On-screen Keyboard */
1830
1831
#keyboard {
1832
background-color: $alt_bg_color;
1833
}
1834
1835
.keyboard-layout {
1836
spacing: 10px;
1837
padding: 10px;
1838
}
1839
1840
.keyboard-row { spacing: 15px; }
1841
1842
.keyboard-key {
1843
min-height: $medium_size * 2;
1844
min-width: $medium_size * 2;
1845
font-size: 2em;
1846
font-weight: 500;
1847
border-radius: 2px;
1848
border: none;
1849
color: inherit;
1850
@include button(normal);
1851
&:focus { @include button(focus); }
1852
&:hover,&:checked { @include button(hover); }
1853
&:active { @include button(active);}
1854
&:grayed { //FIXME
1855
background-color: $alt_bg_color;
1856
color: $inverse_fg_color;
1857
border-color: $alt_bg_color;
1858
}
1859
}
1860
1861
.keyboard-subkeys { //long press on a key popup
1862
color: inherit;
1863
padding: 5px;
1864
-arrow-border-radius: 0;
1865
-arrow-background-color: transparent;
1866
-arrow-border-width: 0;
1867
-arrow-border-color: transparent;
1868
-arrow-base: 0;
1869
-arrow-rise: 0;
1870
-boxpointer-gap: 5px;
1871
background-color: $base_color;
1872
border-radius: 2px;
1873
box-shadow: $shadow_2;
1874
}
1875
1876
// IBus Candidate Popup
1877
1878
.candidate-popup-content {
1879
padding: 8px;
1880
spacing: 0;
1881
}
1882
1883
.candidate-index {
1884
padding: 0 4px 0 0;
1885
color: $hint_fg_color;
1886
.candidate-box:selected & { color: $inverse_hint_fg_color; }
1887
}
1888
1889
.candidate-box {
1890
transition-duration: 0s; // FIXME: needs more natural transitions
1891
min-height: $menuitem_size;
1892
padding: 0 8px;
1893
border-radius: 2px;
1894
&:hover { background-color: $divider_color; color: $fg_color; }
1895
&:active { background-color: $track_color; color: $fg_color; }
1896
&:selected { background-color: $primary_color; color: $inverse_fg_color; }
1897
}
1898
1899
.candidate-page-button-box {
1900
height: $menuitem_size;
1901
.vertical & { padding-top: 0; }
1902
.horizontal & { padding-left: 0; }
1903
}
1904
1905
.candidate-page-button {
1906
min-width: $menuitem_size;
1907
min-height: $menuitem_size;
1908
padding: 0;
1909
}
1910
1911
.candidate-page-button-previous { border-radius: 2px; border-right-width: 0; }
1912
.candidate-page-button-next { border-radius: 2px; }
1913
.candidate-page-button-icon { icon-size: em(16px); }
1914
1915
/* Auth Dialogs & Screen Shield */
1916
1917
.framed-user-icon {
1918
background-size: contain;
1919
border: none;
1920
color: $inverse_fg_color;
1921
border-radius: 2px;
1922
&:hover {
1923
border-color: $inverse_fg_color;
1924
color: $inverse_fg_color;
1925
}
1926
}
1927
1928
// LOGIN DIALOG
1929
1930
.login-dialog-banner-view {
1931
padding-top: 24px;
1932
max-width: 23em;
1933
}
1934
1935
.login-dialog {
1936
//reset
1937
border: none;
1938
background-color: transparent;
1939
1940
StEntry {
1941
color: $inverse_fg_color;
1942
selection-background-color: $inverse_track_color;
1943
selected-color: $inverse_fg_color;
1944
@include entry(normal, $fc:$inverse_track_color);
1945
&:focus { @include entry(focus, $fc:$inverse_fg_color); }
1946
&:insensitive {
1947
@include entry(insensitive, $fc:$inverse_divider_color);
1948
color: $inverse_disabled_fg_color;
1949
}
1950
}
1951
1952
.modal-dialog-button-box { spacing: 3px; }
1953
.modal-dialog-button {
1954
padding: 0 16px;
1955
@include button(flat-normal, $tc: $inverse_fg_color);
1956
&:hover,&:focus { @include button(flat-hover, $tc: $inverse_fg_color); }
1957
&:active { @include button(flat-active, $tc: $inverse_fg_color); }
1958
&:insensitive { @include button(flat-insensitive, $tc: $inverse_fg_color); }
1959
1960
&:default {
1961
@include button(normal, $c: $suggested_color, $tc: $inverse_fg_color);
1962
&:hover,&:focus { @include button(hover, $c: $suggested_color, $tc: $inverse_fg_color); }
1963
&:active { @include button(active, $c: $suggested_color, $tc: $inverse_fg_color); }
1964
&:insensitive { @include button(insensitive, $c: $inverse_divider_color, $tc: $inverse_disabled_fg_color); }
1965
}
1966
}
1967
}
1968
1969
.login-dialog-logo-bin { padding: 24px 0px; }
1970
.login-dialog-banner { color: $inverse_secondary_fg_color; }
1971
.login-dialog-button-box { spacing: 5px; }
1972
.login-dialog-message-warning { color: $warning_color; }
1973
.login-dialog-message-hint { padding-top: 0; padding-bottom: 20px; }
1974
.login-dialog-user-selection-box { 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
.login-dialog-not-listed-label {
1983
font-size: 1em;
1984
font-weight: bold;
1985
color: $inverse_secondary_fg_color;
1986
padding-top: 1em;
1987
&:hover { color: $inverse_fg_color; }
1988
&:focus { background-color: $inverse_divider_color; }
1989
}
1990
1991
.login-dialog-user-list-view { -st-vfade-offset: 1em; }
1992
.login-dialog-user-list {
1993
spacing: 12px;
1994
padding: .2em;
1995
width: 23em;
1996
&:expanded .login-dialog-user-list-item:focus { background-color: $inverse_divider_color; color: $inverse_fg_color; }
1997
&:expanded .login-dialog-user-list-item:hover { background-color: $inverse_divider_color; color: $inverse_fg_color; }
1998
&:expanded .login-dialog-user-list-item:active { background-color: $inverse_track_color; color: $inverse_fg_color; }
1999
&:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $inverse_fg_color; }
2000
}
2001
.login-dialog-user-list-item {
2002
border-radius: 2px;
2003
padding: 4px 4px 0;
2004
color: $inverse_secondary_fg_color;
2005
&:ltr { padding-right: 1em; }
2006
&:rtl { padding-left: 1em; }
2007
&:hover { background-color: $inverse_divider_color; color: $inverse_fg_color; }
2008
&:active { background-color: $inverse_track_color; color: $inverse_fg_color; }
2009
.login-dialog-timed-login-indicator {
2010
height: 2px;
2011
margin: 2px 0 0 0;
2012
background-color: $inverse_fg_color;
2013
}
2014
&:focus .login-dialog-timed-login-indicator { background-color: $inverse_fg_color; }
2015
}
2016
2017
.login-dialog-username,
2018
.user-widget-label {
2019
color: $inverse_fg_color;
2020
@include font(title);
2021
text-align: left;
2022
padding-left: 15px;
2023
}
2024
.user-widget-label {
2025
&:ltr { padding-left: 18px; }
2026
&:rtl { padding-right: 18px; }
2027
}
2028
2029
.login-dialog-prompt-layout {
2030
padding-top: 24px;
2031
padding-bottom: 12px;
2032
spacing: 8px;
2033
width: 23em;
2034
}
2035
2036
.login-dialog-prompt-label {
2037
color: $inverse_hint_fg_color;
2038
font-size: 1em;
2039
padding-top: 1em;
2040
}
2041
2042
.login-dialog-session-list-button StIcon {
2043
icon-size: 1.25em;
2044
}
2045
2046
.login-dialog-session-list-button {
2047
color: $inverse_secondary_fg_color;
2048
&:hover,&:focus { color: $inverse_fg_color; }
2049
&:active { color: $inverse_fg_color; }
2050
}
2051
2052
//SCREEN SHIELD
2053
2054
.screen-shield-arrows {
2055
padding-bottom: 3em;
2056
}
2057
2058
.screen-shield-arrows Gjs_Arrow {
2059
color: white;
2060
width: 80px;
2061
height: 48px;
2062
-arrow-thickness: 12px;
2063
-arrow-shadow: $shadow_1;
2064
}
2065
2066
.screen-shield-clock {
2067
color: white;
2068
text-shadow: $shadow_1;
2069
font-weight: normal;
2070
text-align: center;
2071
padding-bottom: 1.5em;
2072
}
2073
2074
.screen-shield-clock-time {
2075
@include font(display-4);
2076
text-shadow: $shadow_1;
2077
}
2078
2079
.screen-shield-clock-date { @include font(display-2); }
2080
2081
.screen-shield-notifications-container {
2082
spacing: 6px;
2083
width: 30em;
2084
background-color: transparent;
2085
max-height: 500px;
2086
.summary-notification-stack-scrollview {
2087
padding-top: 0;
2088
padding-bottom: 0;
2089
}
2090
2091
.notification,
2092
.screen-shield-notification-source {
2093
padding: 8px;
2094
border: none;
2095
background-color: $alt_bg_color;
2096
color: $inverse_fg_color;
2097
border-radius: 2px;
2098
}
2099
.notification { margin-right: 16px; } //compensate for space allocated to the scrollbar
2100
}
2101
2102
2103
.screen-shield-notification-label {
2104
min-height: $small_size - 2px;
2105
padding: 2px 0px 0px 16px;
2106
font-weight: bold;
2107
}
2108
2109
.screen-shield-notification-count-text {
2110
min-height: $small_size - 2px;
2111
padding: 2px 0px 0px 16px;
2112
color: $inverse_secondary_fg_color;
2113
}
2114
2115
#panel.lock-screen { background-color: $alt_bg_color; }
2116
2117
.screen-shield-background { //just the shadow, really
2118
background: black;
2119
box-shadow: $shadow_5;
2120
}
2121
2122
#lockDialogGroup {
2123
background: #607D8B url("assets/noise-texture.svg");
2124
background-size: cover;
2125
}
2126
2127
#screenShieldNotifications {
2128
StScrollBar { @extend %overview_scrollbar; }
2129
}
2130
2131
2132
// Looking Glass
2133
#LookingGlassDialog {
2134
background-color: $base_color;
2135
spacing: 4px;
2136
padding: 0;
2137
border: none;
2138
border-radius: 2px;
2139
box-shadow: $shadow_4;
2140
& > #Toolbar {
2141
padding: 0 8px;
2142
border: none;
2143
border-radius: 0;
2144
background-color: rgba($base_color, 0.01);
2145
box-shadow: inset 0 -1px 0 $border_color;
2146
}
2147
.labels { spacing: 0; }
2148
.notebook-tab {
2149
-natural-hpadding: 12px;
2150
-minimum-hpadding: 6px;
2151
font-weight: bold;
2152
color: $hint_fg_color;
2153
transition-duration: $longer_duration;
2154
padding-left: 16px;
2155
padding-right: 16px;
2156
min-height: $medium_size;
2157
padding: 0 16px * 2;
2158
&:hover {
2159
box-shadow: inset 0 -2px 0px $track_color;
2160
color: $fg_color;
2161
text-shadow: none;
2162
}
2163
&:selected {
2164
border-bottom-width: 0;
2165
border-color: transparent;
2166
background-color: rgba($base_color, 0.01);
2167
box-shadow: inset 0 -2px 0px $primary_color;
2168
color: $fg_color;
2169
text-shadow: none;
2170
}
2171
}
2172
StBoxLayout#EvalBox { padding: 4px; spacing: 4px; }
2173
StBoxLayout#ResultsArea { spacing: 4px; }
2174
}
2175
2176
.lg-dialog {
2177
StEntry {
2178
selection-background-color: $primary_color;
2179
selected-color: $inverse_fg_color;
2180
}
2181
.shell-link {
2182
color: $link_color;
2183
&:hover { color: $link_color; }
2184
}
2185
}
2186
2187
.lg-completions-text {
2188
font-size: 1em;
2189
font-style: italic;
2190
}
2191
2192
.lg-obj-inspector-title {
2193
spacing: 4px;
2194
}
2195
2196
.lg-obj-inspector-button {
2197
min-height: $medium_size;
2198
padding: 0 16px;
2199
border: none;
2200
border-radius: 2px;
2201
@include font(button);
2202
@include button(flat-normal);
2203
&:hover { @include button(flat-hover); }
2204
&:active { @include button(flat-active); }
2205
&:insensitive { @include button(flat-insensitive); }
2206
&:focus { @include button(flat-focus); }
2207
&:hover { border: none; }
2208
}
2209
2210
#lookingGlassExtensions { padding: 4px; }
2211
2212
.lg-extensions-list {
2213
padding: 4px;
2214
spacing: 6px;
2215
}
2216
2217
.lg-extension {
2218
border: none;
2219
border-radius: 2px;
2220
padding: 4px;
2221
}
2222
2223
.lg-extension-name {
2224
@include font(headline);
2225
}
2226
2227
.lg-extension-meta {
2228
spacing: 6px;
2229
}
2230
2231
#LookingGlassPropertyInspector {
2232
background: $base_color;
2233
border: none;
2234
border-radius: 2px;
2235
padding: 6px;
2236
box-shadow: $shadow_4;
2237
}
2238