aafa011f2b
- rework the entry style to work in both hc and normal - rework drawing functions to accommodate hc - buttons all get borders under hc now - window picker titles are more legible - alt+tab switcher tiles are visible - dash is made more visible under hc - popover menus are all more visible under hc - search results borders are improved - calendar days have a different look under hc - overview bg is completely black in hc Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2527>
33 lines
764 B
SCSS
33 lines
764 B
SCSS
/* Workspace pager */
|
|
|
|
// thumbnails in overview
|
|
.workspace-thumbnails {
|
|
visible-width: 32px; //amount visible before hover
|
|
spacing: $base_padding;
|
|
padding: $base_padding;
|
|
|
|
.workspace-thumbnail {
|
|
color: $osd_fg_color;
|
|
background-color: lighten($system_bg_color, 10%);
|
|
border-radius: $base_border_radius*0.5;
|
|
border: 1px solid transparent;
|
|
|
|
@if $is_highcontrast {
|
|
border-color: $hc_inset_color;
|
|
}
|
|
}
|
|
|
|
// 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: $base_border_radius;
|
|
}
|