WIP darkmode theme: do not apply dark filter to images

This commit is contained in:
Hadi Nategh 2020-12-16 14:16:24 +01:00
parent 76ac51b94d
commit 688387a160
2 changed files with 206 additions and 206 deletions

File diff suppressed because it is too large Load Diff

View File

@ -17,11 +17,10 @@
html[data-darkmode='1'] {
background: #000;
filter: invert(1) hue-rotate(180deg)
}
html[data-darkmode='1'] img {
filter: invert(1) hue-rotate(180deg)
filter: invert(1) hue-rotate(180deg);
img, #blueimp-gallery {
filter: invert(1) hue-rotate(180deg) !important;
}
}
}