diff options
| author | 2022-11-20 14:35:02 +0100 | |
|---|---|---|
| committer | 2022-11-20 14:35:02 +0100 | |
| commit | 47883d3086b75bab800ad996e4e0ae01e331f4c3 (patch) | |
| tree | 69700083881a15988e681e8cc98b90dadbd92989 /p/themes/Ansum | |
| parent | 0ad8e6b4189d6afa6d6f1a74ba2bf9e90faf8ef3 (diff) | |
fix: Article hover that changes the background (#4874)
Diffstat (limited to 'p/themes/Ansum')
| -rw-r--r-- | p/themes/Ansum/_list-view.scss | 10 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.css | 4 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.rtl.css | 4 |
3 files changed, 10 insertions, 8 deletions
diff --git a/p/themes/Ansum/_list-view.scss b/p/themes/Ansum/_list-view.scss index c85c6f8fb..1ffd68dc7 100644 --- a/p/themes/Ansum/_list-view.scss +++ b/p/themes/Ansum/_list-view.scss @@ -11,11 +11,13 @@ @include mixins.transition(all, 0.15s, ease-in-out); - &:hover { - background: variables.$grey-lighter; - - &:not(.current):hover .item.title { + .flux_header { + &:hover { background: variables.$grey-lighter; + + &:not(.current):hover .item.title { + background: variables.$grey-lighter; + } } } diff --git a/p/themes/Ansum/ansum.css b/p/themes/Ansum/ansum.css index b38f6e578..dfc7562f9 100644 --- a/p/themes/Ansum/ansum.css +++ b/p/themes/Ansum/ansum.css @@ -977,10 +977,10 @@ main.prompt { background: #fff; transition: all 0.15s ease-in-out; } -.flux:hover { +.flux .flux_header:hover { background: #fcfaf8; } -.flux:hover:not(.current):hover .item.title { +.flux .flux_header:hover:not(.current):hover .item.title { background: #fcfaf8; } .flux.current { diff --git a/p/themes/Ansum/ansum.rtl.css b/p/themes/Ansum/ansum.rtl.css index 261017071..c5809c501 100644 --- a/p/themes/Ansum/ansum.rtl.css +++ b/p/themes/Ansum/ansum.rtl.css @@ -977,10 +977,10 @@ main.prompt { background: #fff; transition: all 0.15s ease-in-out; } -.flux:hover { +.flux .flux_header:hover { background: #fcfaf8; } -.flux:hover:not(.current):hover .item.title { +.flux .flux_header:hover:not(.current):hover .item.title { background: #fcfaf8; } .flux.current { |
