From eab768f950acf16c836c9dc3d71253177676e321 Mon Sep 17 00:00:00 2001 From: Garrett Robinson Date: Thu, 28 Sep 2023 16:25:34 +0300 Subject: [PATCH] Style safe_extension_filename consistently in Dark Mode To be consistent with Light Mode, the background of the safe_extension_filename QLabel should match the adjacent QTextField, but the text should be "grayed out"/disabled to indicate that it's not supposed to be editable. --- share/dangerzone.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/share/dangerzone.css b/share/dangerzone.css index a2fc935..31bf7d9 100644 --- a/share/dangerzone.css +++ b/share/dangerzone.css @@ -26,6 +26,11 @@ MainWindow[OSColorMode="light"] QLabel[style="safe_extension_filename"] { color: grey; } +MainWindow[OSColorMode="dark"] QLabel[style="safe_extension_filename"] { + background: black; + color: grey; +} + QLabel.docs-selection { font-size: 18px; }