summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2022-08-22 11:13:54 +0000
committerJakub Steiner <jimmac@gmail.com>2022-08-22 11:15:08 +0000
commit37ff32e67dbfe9f5cedcd208bb1538f1741f8c1e (patch)
tree50730874942690aa0d8b32dc46a65fe545680eb3
parent3fbf41ea749b01c629312006b46897f97d53519a (diff)
downloadgnome-shell-wip/jimmac/prominent-hover.tar.gz
theme: Prominent hover for buttonswip/jimmac/prominent-hover
Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/5765
-rw-r--r--data/theme/gnome-shell-sass/_drawing.scss6
1 files 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%);