39301a744e
- remove tiled preview corners; merge with misc.scss - sync general label styles from libadwaita - use variables in ibus css - remove redundant spacing variable as its equal to padding - use more global styles in screenshot css - tidy up entry styles - cleanup the networks dialog stylesheet - make colours less dark - cleanup the popover stylesheet - cleanup the mixins for tiles and overview icons - adjust the button style definitions on checked style - add osd button definitions Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2172>
29 lines
651 B
SCSS
29 lines
651 B
SCSS
/* Workspace pager */
|
|
|
|
// thumbnails in overview
|
|
.workspace-thumbnails {
|
|
visible-width: 32px; //amount visible before hover
|
|
spacing: $base_padding;
|
|
padding: $base_padding;
|
|
|
|
.workspace-thumbnail {
|
|
@extend %overview_panel;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
// drag and drop indicator
|
|
.placeholder {
|
|
background-image: url("resource:///org/gnome/shell/theme/workspace-placeholder.svg");
|
|
background-size: contain;
|
|
width: 18px;
|
|
}
|
|
}
|
|
|
|
// selected indicator
|
|
.workspace-thumbnail-indicator {
|
|
border: 3px solid $selected_bg_color;
|
|
border-radius: 3px;
|
|
padding: 0px;
|
|
// background-color: transparentize($selected_bg_color, 0.9);
|
|
}
|