From 37ff32e67dbfe9f5cedcd208bb1538f1741f8c1e Mon Sep 17 00:00:00 2001 From: Jakub Steiner Date: Mon, 22 Aug 2022 11:13:54 +0000 Subject: [PATCH] theme: Prominent hover for buttons Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/5765 --- data/theme/gnome-shell-sass/_drawing.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/theme/gnome-shell-sass/_drawing.scss b/data/theme/gnome-shell-sass/_drawing.scss index bdb2fb261..fdbfa81d1 100644 --- a/data/theme/gnome-shell-sass/_drawing.scss +++ b/data/theme/gnome-shell-sass/_drawing.scss @@ -172,7 +172,7 @@ // hover button @else if $t==hover { color: $tc; - background-color: lighten($button_bg_color, 3%); + background-color: lighten($button_bg_color, 6%); } // active button @@ -203,8 +203,8 @@ box-shadow: inset 0 0 0 2px lighten($selected_bg_color, 10%); } &:hover, &:focus { - background-color: lighten($selected_bg_color, 5%); - color: lighten($selected_fg_color, 5%); + background-color: lighten($selected_bg_color, 10%); + color: lighten($selected_fg_color, 10%); } &:active { background-color: darken($selected_bg_color, 7%);