From 1053b5826a2b8cbdb0aa9beb6c3d013de3e07c29 Mon Sep 17 00:00:00 2001 From: Sam Hewitt Date: Tue, 14 May 2024 10:50:12 -0230 Subject: [PATCH] style: Fix contrast issues of themed icons in messages - increase circular bg color transparency Fixes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7628 Part-of: --- data/theme/gnome-shell-sass/widgets/_message-list.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/data/theme/gnome-shell-sass/widgets/_message-list.scss b/data/theme/gnome-shell-sass/widgets/_message-list.scss index 6cdc04050..f07ac0e2a 100644 --- a/data/theme/gnome-shell-sass/widgets/_message-list.scss +++ b/data/theme/gnome-shell-sass/widgets/_message-list.scss @@ -144,10 +144,11 @@ // icon size and color icon-size: $base_icon_size * 3; // 48px + // a small symbolic icon on a circle background &.message-themed-icon { - border-radius: $forced_circular_radius; // is circular - background-color: transparentize($fg_color, 0.8); - icon-size: $base_icon_size; + border-radius: $forced_circular_radius; + background-color: transparentize($fg_color, .93); + icon-size: $scalable_icon_size; min-width: $base_icon_size * 3; min-height: $base_icon_size * 3; }