From f98487a03b8f00406b480ab6aae8b7e9556d2d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sat, 13 Aug 2022 21:23:40 +0200 Subject: [PATCH] Show the scanner camera feed non-inverted when using darkmode. --- assets/css/app.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/css/app.css b/assets/css/app.css index 168c9076..01eecf10 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -377,7 +377,7 @@ btn-xs margin-right: auto; } -.darkmode--activated .hoverpic:hover { +.darkmode--activated .hoverpic:hover, { background: black; } @@ -804,7 +804,9 @@ div.dataTables_wrapper div.dataTables_info { z-index: 2020; } -.darkmode--activated img { +/** If darkmode is enabled revert the blening for images and videos, as these should be shown not inverted */ +.darkmode--activated img, +.darkmode--activated video { mix-blend-mode: difference; }