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

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