_apps.scss
ASCII text
1
// floating status bar
2
.floating-bar {
3
@extend %osd;
4
// @extend .toolbar.osd;
5
padding: 3px 0 4px;
6
border-width: 1px;
7
border-style: solid solid none;
8
border-color: $borders_color;
9
border-radius: 2px + 1px 2px + 1px 0 0;
10
background-color: $base_color;
11
background-clip: $extra_background_clip;
12
&.left {
13
border-left-style: none;
14
border-top-left-radius: 0;
15
}
16
&.right {
17
border-right-style: none;
18
border-top-right-radius: 0;
19
}
20
.button {
21
padding: 4px;
22
}
23
}
24
25
/************
26
* Nautilus *
27
************/
28
29
.nautilus-canvas-item {
30
// border-radius: 2px;
31
}
32
33
.nautilus-canvas-item.dim-label,
34
.nautilus-list-dim-label {
35
// @extend .dim-label;
36
}
37
38
.nautilus-canvas-item.dim-label:selected,
39
.nautilus-list-dim-label:selected {
40
}
41
42
.nautilus-desktop.nautilus-canvas-item {
43
// background-color: scale-alpha(#000000, $lower_opacity);
44
color: $selected_fg_color;
45
text-shadow: $z-depth-1;
46
}
47
48
.nautilus-desktop.nautilus-canvas-item:selected {
49
// color: $selected_fg_color;
50
text-shadow: none;
51
}
52
53
.nautilus-circular-button {
54
@extend %image_button;
55
}
56
57
/* Toolbar */
58
59
@keyframes needs_attention_keyframes {
60
0% {background-color: transparent; }
61
50% {background-color: $track_color; }
62
100% {background-color: transparent; }
63
}
64
.nautilus-operations-button-needs-attention {
65
color: $accent_bg_color;
66
animation: needs_attention_keyframes 2s $material_timing_function;
67
}
68
.nautilus-operations-button-needs-attention-multiple {
69
color: $accent_bg_color;
70
animation: needs_attention_keyframes 2s $material_timing_function;
71
animation-iteration-count: 2;
72
}
73
74
.disk-space-display {
75
// border-style: solid;
76
// border-width: 2px;
77
}
78
79
.disk-space-display.unknown {
80
background-color: $warning_color;
81
}
82
83
.disk-space-display.used {
84
background-color: $selected_bg_color;
85
}
86
87
.disk-space-display.free {
88
background-color: $track_color;
89
color: $insensitive_fg_color;
90
}
91
92
/* View */
93
NautilusListView .view {
94
// border-bottom: 1px solid $borders_color;
95
}
96
97