d1468f7f6d
The overview is using a heavily darkened background image nowadays. Since the contrast provided by this is always good enough, this makes it possible to always have a fully transparent panel while showing the overview. So change the theme to always make the panel fully transparent while the overview is shown. The duration of the animation for that is 250ms because that's the duration of the show and hide animation of the overview. Also add special handling for the high-contrast theme, where we always make the panel opaque. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1397>
36 lines
732 B
SCSS
36 lines
732 B
SCSS
$variant: 'dark';
|
|
|
|
@import "gnome-shell-sass/_high-contrast-colors"; //use gtk colors
|
|
@import "gnome-shell-sass/_drawing";
|
|
@import "gnome-shell-sass/_common";
|
|
@import "gnome-shell-sass/_widgets";
|
|
|
|
//force symbolic icons
|
|
stage {
|
|
-st-icon-style: symbolic;
|
|
}
|
|
|
|
.toggle-switch { width: 48px; }
|
|
.toggle-switch-us, .toggle-switch-intl {
|
|
background-image: url("resource:///org/gnome/shell/theme/toggle-off-hc.svg");
|
|
&:checked { background-image: url("resource:///org/gnome/shell/theme/toggle-on-hc.svg"); }
|
|
}
|
|
|
|
//force opaque panel
|
|
#panel {
|
|
&.login-screen,
|
|
&.unlock-screen,
|
|
&:overview {
|
|
background-color: #000;
|
|
|
|
.panel-corner {
|
|
-panel-corner-opacity: 1;
|
|
}
|
|
}
|
|
|
|
.panel-button {
|
|
color: #fff !important;
|
|
}
|
|
}
|
|
|