f93e4d7424
- panel fg color was derived from bg color. Not a good idea as it's not just light/drk, but HC as well. - deriving from dark theme means contrast for things like popover items is better. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/904
18 lines
504 B
SCSS
18 lines
504 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"); }
|
|
}
|