diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-07-24 18:10:26 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-09-29 14:00:53 +0200 |
commit | 8ae9df3bb7ab76bf8c1f864ac6c4869366e8b497 (patch) | |
tree | 5a46652f3040da305a064d3a1b5c32dd72425a00 | |
parent | 25d9d3ba1b6eed803c838f8cbfb67fb9b60e9185 (diff) | |
download | volse-hubzilla-8ae9df3bb7ab76bf8c1f864ac6c4869366e8b497.tar.gz volse-hubzilla-8ae9df3bb7ab76bf8c1f864ac6c4869366e8b497.tar.bz2 volse-hubzilla-8ae9df3bb7ab76bf8c1f864ac6c4869366e8b497.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.
-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 { |