소스 검색

fixed checkmark color if it's selected and disabled

Tobias Hagemann 5 년 전
부모
커밋
26e140ee22
2개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      main/ui/src/main/resources/css/dark_theme.css
  2. 4 0
      main/ui/src/main/resources/css/light_theme.css

+ 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                                                                 *