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.

 _workspace-switcher.scss

View raw Download
text/plain • 673 B
ASCII text
        
            
1
/* Workspace pager */
2
3
// thumbnails in overview
4
.workspace-thumbnails {
5
@extend %overview-panel;
6
visible-width: 32px; // amount visible before hover
7
spacing: 12px;
8
padding: 12px;
9
10
border-right-width: 0;
11
border-radius: $corner-radius 0 0 $corner-radius;
12
13
&:rtl {
14
border-left-width: 0;
15
border-radius: 0 $corner-radius $corner-radius 0;
16
}
17
18
// drag and drop indicator
19
.placeholder {
20
height: 24px;
21
background-image: url("assets/dash-placeholder.svg");
22
background-size: contain;
23
}
24
}
25
26
// selected indicator
27
.workspace-thumbnail-indicator {
28
padding: 6px 10px;
29
border: 0 solid $on-dark;
30
border-left-width: 2px;
31
border-radius: 0;
32
}
33