diff options
author | Mario <mario@mariovavti.com> | 2024-10-02 20:08:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-02 20:08:55 +0000 |
commit | 767989468411b3b93243d2d5f8bb08ab0fcc2161 (patch) | |
tree | 24a7cedf4a550363134a0f9aa4628886d90a6ac6 | |
parent | 520cf1015c2f7668fc4836aa1f27aa9f0824d3ba (diff) | |
download | volse-hubzilla-767989468411b3b93243d2d5f8bb08ab0fcc2161.tar.gz volse-hubzilla-767989468411b3b93243d2d5f8bb08ab0fcc2161.tar.bz2 volse-hubzilla-767989468411b3b93243d2d5f8bb08ab0fcc2161.zip |
Replace drop shadow in help toc with brighter color.
The drop shadow looked terrible in dark mode. While that could be fixed,
I think it looks better with just using the link hover color and making
the selected item bold.
(cherry picked from commit 8ae9df3bb7ab76bf8c1f864ac6c4869366e8b497)
Co-authored-by: Harald Eilertsen <haraldei@anduin.net>
-rw-r--r-- | view/css/mod_help.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/css/mod_help.css b/view/css/mod_help.css index df24e7c5e..d596048c9 100644 --- a/view/css/mod_help.css +++ b/view/css/mod_help.css @@ -36,9 +36,9 @@ padding-left: 20px; } -.selected-doco-nav { +.selected-doco-nav > a { font-weight: bold; - text-shadow: 2px 2px 3px lightgray; + color: var(--bs-link-hover-color); } #help-content pre code { |