From a9fa4cc49e0b1c078f063323580d80bdb2c0b484 Mon Sep 17 00:00:00 2001 From: Joonas Henriksson Date: Sat, 23 Nov 2019 12:50:27 +0200 Subject: [PATCH] theme: Darken hovered message-media-control button Increases contrast between normal and hovered states in message-media-control buttons. Previously there was very little difference between the two states, making it hard to distinguish whether the mouse cursor was over the button. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/855 --- data/theme/gnome-shell-sass/_common.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/theme/gnome-shell-sass/_common.scss b/data/theme/gnome-shell-sass/_common.scss index af97b87cd..32f1a5674 100644 --- a/data/theme/gnome-shell-sass/_common.scss +++ b/data/theme/gnome-shell-sass/_common.scss @@ -1159,7 +1159,7 @@ StScrollBar { &:last-child:ltr { padding-right: 18px; } &:last-child:rtl { padding-left: 18px; } - &:hover { color: $fg_color; } + &:hover { color: darken($fg_color, 10%) } &:insensitive { color: darken($fg_color,40%); } }