d71d85e90c
Use a brighter color and increase the contrast of the selected/active items in the switcher popup. Since a bright color doesn't go well with a box-shadow, remove that shadow, an effect like should only be used for elements clicked with a mouse anyway. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1135
66 lines
1.0 KiB
SCSS
66 lines
1.0 KiB
SCSS
/* App Switcher */
|
|
|
|
.switcher-popup {
|
|
padding: 8px;
|
|
spacing: $base_spacing * 4;
|
|
}
|
|
|
|
// switcher onscreen panel
|
|
.switcher-list {
|
|
@extend %osd_panel;
|
|
|
|
.item-box {
|
|
padding: 8px;
|
|
border-radius: $base_border_radius + 1px;
|
|
border: 1px solid transparent;
|
|
|
|
&:outlined {
|
|
background-color: transparentize($osd_fg_color, 0.7);
|
|
}
|
|
|
|
&:selected {
|
|
background-color: transparentize($osd_fg_color, 0.7);
|
|
color: $osd_fg_color;
|
|
}
|
|
}
|
|
|
|
// window thumbnails
|
|
.thumbnail-box {
|
|
padding: 2px;
|
|
spacing: $base_spacing;
|
|
}
|
|
|
|
.thumbnail {
|
|
width: 256px;
|
|
}
|
|
|
|
.separator {
|
|
width: 1px;
|
|
background: $borders_color;
|
|
}
|
|
|
|
.switcher-list-item-container {
|
|
spacing: $base_spacing * 2;
|
|
}
|
|
}
|
|
|
|
.switcher-arrow {
|
|
border-color: rgba(0,0,0,0);
|
|
color: transparentize($fg_color,0.2);
|
|
&:highlighted {
|
|
color: $fg_color;
|
|
}
|
|
}
|
|
|
|
// Input Source Switcher
|
|
.input-source-switcher-symbol {
|
|
font-size: 34pt;
|
|
width: 96px;
|
|
height: 96px;
|
|
}
|
|
|
|
// Window cycler highlight
|
|
.cycler-highlight {
|
|
border: 5px solid $selected_bg_color;
|
|
}
|