c17dc9c8ec
On the new horizontal workspace-thumbnails, the old placeholder from vertical dash appeared too small, and was easily hidden behind the dragged window/icon. Rotate the placeholder 90 degrees to better fill the spacing between thumbnails. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1801>
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_spacing;
|
|
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);
|
|
}
|