mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-08 00:13:02 +00:00
32 lines
701 B
SCSS
32 lines
701 B
SCSS
/* Workspace pager */
|
|
|
|
// thumbnails in overview
|
|
.workspace-thumbnails {
|
|
visible-width: 32px; //amount visible before hover
|
|
spacing: $base_spacing;
|
|
padding: $base_padding;
|
|
|
|
.workspace-thumbnail {
|
|
color: $light_alt_fg_color;
|
|
background-color: $light_divider_color;
|
|
border: none;
|
|
border-radius: $bt_radius;
|
|
}
|
|
|
|
// drag and drop indicator
|
|
.placeholder {
|
|
background-image: url("assets/dash-placeholder.svg");
|
|
background-size: contain;
|
|
width: 18px;
|
|
height: 24px;
|
|
}
|
|
}
|
|
|
|
// selected indicator
|
|
.workspace-thumbnail-indicator {
|
|
border: 3px solid $primary_color;
|
|
border-radius: 3px;
|
|
padding: 0px;
|
|
// background-color: transparentize($primary_color, 0.9);
|
|
}
|