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.
This commit is contained in:
Garrett Robinson 2023-09-28 16:25:34 +03:00 committed by Alex Pyrgiotis
parent 40b6240097
commit eab768f950
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -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;
}