Skip to content

Commit 21fac4a

Browse files
drakkar1969jnsh
authored andcommitted
gnome-shell: Style login/unlock default user icon
Bug: vertical user icon color in the unlock screen for the Arc-Lighter variant is incorrect (dark color) due to upstream limitations on separate styling for login and unlock screens #72
1 parent e73867d commit 21fac4a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

common/gnome-shell/3.36/sass/_common.scss

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2428,15 +2428,20 @@ StScrollBar {
24282428
//
24292429
.user-icon {
24302430
background-size: contain;
2431-
color: $fg_color;
2431+
color: $osd_fg_color;
24322432
border-radius: 99px;
2433+
2434+
.login-dialog-user-list-item:selected & { color: $selected_fg_color; }
2435+
24332436
&:hover {
2434-
color: transparentize($fg_color, 0.3);
2437+
color: $osd_fg_color;
24352438
}
24362439

24372440
& StIcon {
2438-
background-color: transparentize($osd_fg_color, 0.95);
2441+
background-color: transparentize($osd_fg_color, 0.75);
24392442
border-radius: 99px;
2443+
2444+
.login-dialog-user-list-item:selected & { background-color: transparentize($selected_fg_color, 0.75); }
24402445
}
24412446
}
24422447

0 commit comments

Comments
 (0)