classic: Make login entries legible

- hardcoded color hotfix for 43. A more systemic approach discussed below

See https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/410

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2477>
This commit is contained in:
Jakub Steiner 2022-09-08 11:43:50 +02:00
parent 98747a7cee
commit 08610c9a89

View File

@ -184,11 +184,11 @@
StEntry { StEntry {
border:none !important; border:none !important;
&:focus { &:focus {
background-color: transparentize($fg_color, 0.9); background-color: if($variant == 'light', transparentize(white, 0.9), transparentize($fg_color, 0.9));
} }
&:insensitive { &:insensitive {
color: transparentize($fg_color, 0.5); color: if($variant == 'light', transparentize(white, 0.5), transparentize($fg_color, 0.5));
background-color: transparentize($fg_color, 0.95); background-color: if($variant == 'light', transparentize(white, 0.95), transparentize($fg_color, 0.95));
} }
} }