diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2025-04-27 22:30:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-27 22:30:52 +0200 |
commit | 9374b7745f92f8f4b0cfc94163d4df9845a1d15c (patch) | |
tree | 792100d83b6fc73a01979d741ee8cfa548953f38 /p/themes/Flat/flat.css | |
parent | c2ccdf2d1bf12dfc5330c6b622999731199dd62c (diff) | |
download | freshrss-9374b7745f92f8f4b0cfc94163d4df9845a1d15c.tar.gz freshrss-9374b7745f92f8f4b0cfc94163d4df9845a1d15c.zip |
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/Flat/flat.css')
-rw-r--r-- | p/themes/Flat/flat.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/p/themes/Flat/flat.css b/p/themes/Flat/flat.css index 0e110ba35..ecacf749e 100644 --- a/p/themes/Flat/flat.css +++ b/p/themes/Flat/flat.css @@ -257,12 +257,14 @@ th { } .nav-list .item a:hover, +.nav-list .item .as-link:hover, .nav-list .item.active { background: #2980b9; color: #fff; } -.nav-list .item.active a { +.nav-list .item.active a, +.nav-list .item.active .as-link { color: #fff; } |