diff options
author | theRealPadster <padspambox@gmail.com> | 2021-04-18 22:05:58 -0400 |
---|---|---|
committer | Marge Bot <marge-bot@gnome.org> | 2021-05-01 20:31:34 +0000 |
commit | 396c12c925b603bdb1ff1016dcd1c5fd0282ecb3 (patch) | |
tree | 916e8755f7b5e086b47464014066893578965eb7 /data | |
parent | a472657490892592ce34ad3bc095c013c0d75e56 (diff) | |
download | gnome-shell-396c12c925b603bdb1ff1016dcd1c5fd0282ecb3.tar.gz |
theme: Move :hover below :focus in %bubble_button
Fix issue where background colour of modal buttons do not update when
hovering over a focused button.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1818>
Diffstat (limited to 'data')
-rw-r--r-- | data/theme/gnome-shell-sass/_common.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/theme/gnome-shell-sass/_common.scss b/data/theme/gnome-shell-sass/_common.scss index f83ce5e90..9df3d8d43 100644 --- a/data/theme/gnome-shell-sass/_common.scss +++ b/data/theme/gnome-shell-sass/_common.scss @@ -81,7 +81,7 @@ stage { padding: $base_padding * 2; } -// Overview panels +// Overview panels // for the dash and workspace switcher %overview_panel { color: $osd_fg_color; @@ -129,8 +129,8 @@ stage { border-bottom-width: 0; &:insensitive { @include button(insensitive, $shadow: none); } - &:hover { @include button(hover, $shadow: none); } &:focus { @include button(focus, $shadow: none); } + &:hover { @include button(hover, $shadow: none); } &:active { @include button(active, $shadow: none); } // radius is 2 pixel less to fit in bubble @@ -142,7 +142,7 @@ stage { border-right-width: 0; border-radius: 0 0 $modal_radius - 2px 0; } - + &:first-child:last-child { border-radius: 0 0 $modal_radius - 2px $modal_radius - 2px; } |