A fork of the Materia GTK theme.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 _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