diff options
| author | 2023-03-18 22:56:39 +0100 | |
|---|---|---|
| committer | 2023-03-18 22:56:39 +0100 | |
| commit | 73b4fd74a4dd1259e2cefb06b41e86658f98ee5f (patch) | |
| tree | 9aa1556a9b9021340f9957b1b3304ac48f0c6271 /p/themes/Ansum | |
| parent | afccff44560f2da74f42d458259a9e473a281c33 (diff) | |
fix: highlight next/prev article while using shortcuts (#5211)
* fix
* Update p/themes/Ansum/ansum.css
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
* fix
---------
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Diffstat (limited to 'p/themes/Ansum')
| -rw-r--r-- | p/themes/Ansum/_list-view.scss | 4 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.css | 5 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.rtl.css | 3 |
3 files changed, 10 insertions, 2 deletions
diff --git a/p/themes/Ansum/_list-view.scss b/p/themes/Ansum/_list-view.scss index 1ffd68dc7..ed24e8675 100644 --- a/p/themes/Ansum/_list-view.scss +++ b/p/themes/Ansum/_list-view.scss @@ -24,6 +24,10 @@ &.current { background: variables.$white; border-left-color: variables.$main-first; + + &:not(.active) { + background: variables.$grey-lighter; + } } &.not_read:not(.current) { diff --git a/p/themes/Ansum/ansum.css b/p/themes/Ansum/ansum.css index 709861e18..ad73eb7f1 100644 --- a/p/themes/Ansum/ansum.css +++ b/p/themes/Ansum/ansum.css @@ -980,6 +980,9 @@ main.prompt { background: #fff; border-left-color: #ca7227; } +.flux.current:not(.active) { + background: #fcfaf8; +} .flux.not_read:not(.current) { background: #f2f6f8; } @@ -1309,5 +1312,3 @@ a, button.as-link { outline: none; color: #ca7227; } - -/*# sourceMappingURL=ansum.css.map */ diff --git a/p/themes/Ansum/ansum.rtl.css b/p/themes/Ansum/ansum.rtl.css index ad480c952..2e961a911 100644 --- a/p/themes/Ansum/ansum.rtl.css +++ b/p/themes/Ansum/ansum.rtl.css @@ -980,6 +980,9 @@ main.prompt { background: #fff; border-right-color: #ca7227; } +.flux.current:not(.active) { + background: #fcfaf8; +} .flux.not_read:not(.current) { background: #f2f6f8; } |
