diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-02-25 08:42:34 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-02-25 08:42:34 +0000 |
commit | fb6e16fe621575b700e803faf694857b21480423 (patch) | |
tree | 4e44e8fa418806618d6ae954389062ea7a4757bd | |
parent | 64b538d505c251621c0202702f1c5d31435a394d (diff) | |
download | pmwiki.svn-fb6e16fe621575b700e803faf694857b21480423.tar.bz2 |
Dark theme: Images with dark suffix to not be desaturated.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4663 524c5546-5005-0410-9a3e-e25e191bd360
-rw-r--r-- | pub/skins/pmwiki-responsive/skin.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pub/skins/pmwiki-responsive/skin.css b/pub/skins/pmwiki-responsive/skin.css index be93fc6f..a3bc6997 100644 --- a/pub/skins/pmwiki-responsive/skin.css +++ b/pub/skins/pmwiki-responsive/skin.css @@ -625,7 +625,7 @@ table.sortable th.dir-d::after { color-scheme: dark; } - html.pmDarkTheme img, html.pmDarkTheme video { + html.pmDarkTheme img:not([data-darksrc]), html.pmDarkTheme video:not([data-darksrc]) { filter: brightness(.8) saturate(.8) contrast(1.1); } |