mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-09 09:03:18 +00:00
22 lines
466 B
SCSS
22 lines
466 B
SCSS
![]() |
|
||
|
/* Tiled window previews */
|
||
|
|
||
|
$tile_corner_radius: $base_border_radius + 1px;
|
||
|
|
||
|
.tile-preview {
|
||
|
background-color: rgba($primary_color, $lower_opacity);
|
||
|
border: 1px solid $primary_color;
|
||
|
}
|
||
|
|
||
|
.tile-preview-left.on-primary {
|
||
|
border-radius: $tile_corner_radius 0 0 0;
|
||
|
}
|
||
|
|
||
|
.tile-preview-right.on-primary {
|
||
|
border-radius: 0 $tile_corner_radius 0 0;
|
||
|
}
|
||
|
|
||
|
.tile-preview-left.tile-preview-right.on-primary {
|
||
|
border-radius: $tile_corner_radius $tile_corner_radius 0 0;
|
||
|
}
|