Browse Source

fixed checkmark color if it's selected and disabled

Tobias Hagemann 5 years ago
parent
commit
26e140ee22

+ 4 - 0
main/ui/src/main/resources/css/dark_theme.css

@@ -631,6 +631,10 @@
 	-fx-background-color: TEXT_FILL;
 }
 
+.check-box:selected:disabled > .box > .mark {
+	-fx-background-color: TEXT_FILL_MUTED;
+}
+
 /*******************************************************************************
  *                                                                             *
  * RadioButton                                                                 *

+ 4 - 0
main/ui/src/main/resources/css/light_theme.css

@@ -630,6 +630,10 @@
 	-fx-background-color: TEXT_FILL;
 }
 
+.check-box:selected:disabled > .box > .mark {
+	-fx-background-color: TEXT_FILL_MUTED;
+}
+
 /*******************************************************************************
  *                                                                             *
  * RadioButton                                                                 *