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.

 _dash.scss

View raw Download
text/plain • 1.36 kiB
ASCII text
        
            
1
/* Dash */
2
3
$dash_placeholder_size: 32px;
4
$dash_spacing: $base_padding + 4px;
5
$dash_border_radius: $modal_radius * 1.5;
6
7
#dash {
8
@extend %overview_panel;
9
@include fontsize($base_font_size - 2);
10
padding: ($dash_spacing / 2) 0;
11
12
border-radius: 0 $dash_border_radius $dash_border_radius 0;
13
border-left-width: 0;
14
&:rtl {
15
border-radius: $dash_border_radius 0 0 $dash_border_radius;
16
border-right-width: 0;
17
}
18
19
.placeholder {
20
// background-image: url("resource:///org/gnome/shell/theme/dash-placeholder.svg");
21
background-image:none;
22
background-size: contain;
23
height: $dash_placeholder_size;
24
}
25
26
.empty-dash-drop-target {
27
width: $dash_placeholder_size;
28
height: $dash_placeholder_size;
29
}
30
}
31
32
// Dash Items
33
.dash-item-container > StWidget {
34
padding: ($dash_spacing / 2) $dash_spacing;
35
}
36
37
// OSD Tooltip
38
.dash-label {
39
background-color: transparentize($osd_bg_color,0.05);
40
border-radius: $base_border_radius + 2px;
41
border:none;
42
box-shadow:0 0 0 1px $osd_outer_borders_color;
43
color: $osd_fg_color;
44
padding: $base_padding $base_padding + 2px;
45
text-align: center;
46
-x-offset: $base_margin * 2; // distance from the dash edge
47
}
48
49
// Show apps button
50
.show-apps {
51
@include overview-icon($osd_fg_color);
52
53
&:focus,
54
&:checked {
55
.overview-icon {
56
background-color: darken($osd_bg_color,10%);
57
color: $fg_color;
58
}
59
}
60
}
61
62