From 481625972b19c4f06ed3200e4b928aa551244f29 Mon Sep 17 00:00:00 2001 From: Sam Hewitt Date: Tue, 14 Jan 2025 11:29:49 -0330 Subject: [PATCH] style: Fix fg color of user icon on dialogs - use regular fg_color instead of OSD style Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/8151 Part-of: --- data/theme/gnome-shell-sass/widgets/_misc.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/theme/gnome-shell-sass/widgets/_misc.scss b/data/theme/gnome-shell-sass/widgets/_misc.scss index 2f1bfc3a4..c6d05619e 100644 --- a/data/theme/gnome-shell-sass/widgets/_misc.scss +++ b/data/theme/gnome-shell-sass/widgets/_misc.scss @@ -10,15 +10,15 @@ border-radius: $forced_circular_radius; icon-size: $base_icon_size * 4; - background-color: transparentize($osd_fg_color,0.95); - color: $osd_fg_color; + background-color: transparentize($fg_color,0.95); + color: $fg_color; & StIcon { padding: $base_padding * 2; } &.user-avatar { - box-shadow:inset 0 0 0 1px transparentize($osd_fg_color, 0.9); + box-shadow:inset 0 0 0 1px transparentize($fg_color, 0.9); @if $contrast == 'high' { @include draw_hc_inset();