From b6259428f5587e181df3b239fe584d5c0895961b Mon Sep 17 00:00:00 2001 From: Sam Hewitt Date: Wed, 19 Jul 2023 10:31:09 -0230 Subject: [PATCH] style: Remove important override on button insensitive style Part-of: --- data/theme/gnome-shell-sass/_drawing.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/theme/gnome-shell-sass/_drawing.scss b/data/theme/gnome-shell-sass/_drawing.scss index 5606666d6..3909f518f 100644 --- a/data/theme/gnome-shell-sass/_drawing.scss +++ b/data/theme/gnome-shell-sass/_drawing.scss @@ -214,7 +214,7 @@ // insensitive button @else if $t==insensitive { - color: if($variant == 'light', transparentize($tc, .6), transparentize($tc, .5)) !important; + color: if($variant == 'light', transparentize($tc, .6), transparentize($tc, .5)); background-color: if($variant == 'light', transparentize($tc, .9), transparentize($tc, .95)); }