From b637f5c3dd160d99a4b3e7b5f611c5a4349d9b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 20 Feb 2023 00:26:56 +0100 Subject: [PATCH] Exempt label dialog PDF preview from darkmode blending It should show real colors, instead of the darkmode --- assets/css/app/darkmode.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/css/app/darkmode.css b/assets/css/app/darkmode.css index 4368ed64..24df8bab 100644 --- a/assets/css/app/darkmode.css +++ b/assets/css/app/darkmode.css @@ -23,7 +23,8 @@ /** If darkmode is enabled revert the blening for images and videos, as these should be shown not inverted */ .darkmode--activated img, -.darkmode--activated video { +.darkmode--activated video, +.darkmode--activated object { mix-blend-mode: difference; }