diff options
author | Alwaysin <adrien@demma.fr> | 2023-06-10 08:03:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-10 08:03:37 +0200 |
commit | 7a5dd5cedd17791a88670e079d89349dbc926085 (patch) | |
tree | 79308832789d125c06d202663f173348670bddc4 | |
parent | bd97c5601d686dc5242f2a4679d83c1f826c5ac4 (diff) | |
download | freshrss-7a5dd5cedd17791a88670e079d89349dbc926085.tar.gz freshrss-7a5dd5cedd17791a88670e079d89349dbc926085.zip |
Update dark theme css to lower brightness to all icons (#5439)
* Update dark.css to lower brightness to all icons
* Update dark.rtl.css to lower brightness to all icons
* re-add p.help .icon
* re-add p.help .icon
-rw-r--r-- | p/themes/Dark/dark.css | 3 | ||||
-rw-r--r-- | p/themes/Dark/dark.rtl.css | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/p/themes/Dark/dark.css b/p/themes/Dark/dark.css index 4d24db465..cb91bf099 100644 --- a/p/themes/Dark/dark.css +++ b/p/themes/Dark/dark.css @@ -110,7 +110,8 @@ img.favicon { body img, body video, -p.help .icon { +p.help .icon, +.icon { filter: brightness(.6) contrast(1.2); } diff --git a/p/themes/Dark/dark.rtl.css b/p/themes/Dark/dark.rtl.css index 0e6dbda33..5a0b935f6 100644 --- a/p/themes/Dark/dark.rtl.css +++ b/p/themes/Dark/dark.rtl.css @@ -110,7 +110,8 @@ img.favicon { body img, body video, -p.help .icon { +p.help .icon, +.icon { filter: brightness(.6) contrast(1.2); } |