diff options
| author | 2022-11-23 23:06:32 +0100 | |
|---|---|---|
| committer | 2022-11-23 23:06:32 +0100 | |
| commit | 48c8ee574daa3b56a4ab63e13de15cf4fe3455d6 (patch) | |
| tree | 5318e9fe81df271998992afeadb0541b79ea0a4d | |
| parent | aa07582419998cfa82465c28559f2fa1bba15ee3 (diff) | |
fix: Current Flux in Origine theme (#4893)
| -rw-r--r-- | p/themes/Origine/origine.css | 10 | ||||
| -rw-r--r-- | p/themes/Origine/origine.rtl.css | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/p/themes/Origine/origine.css b/p/themes/Origine/origine.css index 457a25ecc..fb81b00a4 100644 --- a/p/themes/Origine/origine.css +++ b/p/themes/Origine/origine.css @@ -839,6 +839,11 @@ a:hover .icon { border-left: 2px solid transparent; } +.flux.current { + background-color: var(--background-color-light); + border-left: 2px solid var(--contrast-border-color-active); +} + .flux .flux_header:hover { background-color: var(--background-color-hover) !important; } @@ -847,11 +852,6 @@ a:hover .icon { background: inherit; } -.flux.current .flux_header { - background-color: var(--background-color-light); - border-left: 2px solid var(--contrast-border-color-active); -} - .flux.not_read { border-left: 2px solid var(--unread-article-border-color); } diff --git a/p/themes/Origine/origine.rtl.css b/p/themes/Origine/origine.rtl.css index 72cf63969..fa5205852 100644 --- a/p/themes/Origine/origine.rtl.css +++ b/p/themes/Origine/origine.rtl.css @@ -839,6 +839,11 @@ a:hover .icon { border-right: 2px solid transparent; } +.flux.current { + background-color: var(--background-color-light); + border-right: 2px solid var(--contrast-border-color-active); +} + .flux .flux_header:hover { background-color: var(--background-color-hover) !important; } @@ -847,11 +852,6 @@ a:hover .icon { background: inherit; } -.flux.current .flux_header { - background-color: var(--background-color-light); - border-right: 2px solid var(--contrast-border-color-active); -} - .flux.not_read { border-right: 2px solid var(--unread-article-border-color); } |
