diff options
| author | 2025-04-27 22:30:52 +0200 | |
|---|---|---|
| committer | 2025-04-27 22:30:52 +0200 | |
| commit | 9374b7745f92f8f4b0cfc94163d4df9845a1d15c (patch) | |
| tree | 792100d83b6fc73a01979d741ee8cfa548953f38 /p/themes/Origine | |
| parent | c2ccdf2d1bf12dfc5330c6b622999731199dd62c (diff) | |
Themes fix CSS .as-link (#7526)
* Themes fix CSS .as-link
Add missing rules.
fix https://github.com/FreshRSS/FreshRSS/pull/7489#issuecomment-2781146577
* More fixes
Diffstat (limited to 'p/themes/Origine')
| -rw-r--r-- | p/themes/Origine/origine.css | 7 | ||||
| -rw-r--r-- | p/themes/Origine/origine.rtl.css | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/p/themes/Origine/origine.css b/p/themes/Origine/origine.css index 79266987c..8f405ea19 100644 --- a/p/themes/Origine/origine.css +++ b/p/themes/Origine/origine.css @@ -373,18 +373,21 @@ a:hover .icon { line-height: 2.5; } -.nav-list .nav-section .item:hover a { +.nav-list .nav-section .item:hover a, +.nav-list .nav-section .item:hover .as-link { background-color: var(--background-color-hover); color: var(--font-color-link-hover); } .nav-list .nav-section .item.active:hover a, +.nav-list .nav-section .item.active:hover .as-link, .nav-list .item.active { background-color: var(--contrast-background-color-active); color: var(--font-color-light); } -.nav-list .item.active a { +.nav-list .item.active a, +.nav-list .item.active .as-link { color: var(--font-color-light); } diff --git a/p/themes/Origine/origine.rtl.css b/p/themes/Origine/origine.rtl.css index a745c388d..4f5f3bc45 100644 --- a/p/themes/Origine/origine.rtl.css +++ b/p/themes/Origine/origine.rtl.css @@ -373,18 +373,21 @@ a:hover .icon { line-height: 2.5; } -.nav-list .nav-section .item:hover a { +.nav-list .nav-section .item:hover a, +.nav-list .nav-section .item:hover .as-link { background-color: var(--background-color-hover); color: var(--font-color-link-hover); } .nav-list .nav-section .item.active:hover a, +.nav-list .nav-section .item.active:hover .as-link, .nav-list .item.active { background-color: var(--contrast-background-color-active); color: var(--font-color-light); } -.nav-list .item.active a { +.nav-list .item.active a, +.nav-list .item.active .as-link { color: var(--font-color-light); } |
