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.

 _tile-preview.scss

View raw Download
text/plain • 469 B
ASCII text
        
            
1
2
/* Tiled window previews */
3
$tile_corner_radius: $base_border_radius + 1px;
4
.tile-preview {
5
background-color: transparentize($selected_bg_color,0.5);
6
border: 1px solid $selected_bg_color;
7
}
8
9
.tile-preview-left.on-primary {
10
border-radius: $tile_corner_radius 0 0 0;
11
}
12
13
.tile-preview-right.on-primary {
14
border-radius: 0 $tile_corner_radius 0 0;
15
}
16
17
.tile-preview-left.tile-preview-right.on-primary {
18
border-radius: $tile_corner_radius $tile_corner_radius 0 0;
19
}