mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX]Вернул галочки
This commit is contained in:
parent
8b0a530324
commit
2828a6df64
1 changed files with 57 additions and 9 deletions
|
@ -1,13 +1,66 @@
|
||||||
/*-- DrLeonardo Design --*/
|
/*-- Without jfoenix --*/
|
||||||
Button, CheckBox, ComboBox, RadioButton {
|
|
||||||
-fx-cursor: hand;
|
|
||||||
}
|
|
||||||
Button {
|
Button {
|
||||||
-fx-background-color: TRANSPARENT, TRANSPARENT, TRANSPARENT, TRANSPARENT;
|
-fx-background-color: TRANSPARENT, TRANSPARENT, TRANSPARENT, TRANSPARENT;
|
||||||
-fx-background-radius: 3px;
|
-fx-background-radius: 3px;
|
||||||
-fx-background-insets: 0px;
|
-fx-background-insets: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CheckBox .box-container {
|
||||||
|
-fx-shape: "M 400 100 L 400 100 A 50 50 0 1 1 400 250 A 50 50 0 1 1 400 100 ";
|
||||||
|
-fx-padding: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
CheckBox .box,
|
||||||
|
CheckBox:indeterminate .box,
|
||||||
|
CheckBox:indeterminate:selected .box{
|
||||||
|
-fx-pref-width: 18;
|
||||||
|
-fx-pref-height: 18;
|
||||||
|
|
||||||
|
-fx-background-color: TRANSPARENT;
|
||||||
|
-fx-background-radius: 2;
|
||||||
|
|
||||||
|
-fx-border-color: #909090;
|
||||||
|
-fx-border-style: solid;
|
||||||
|
-fx-border-radius: 2;
|
||||||
|
-fx-border-width: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
CheckBox:selected .box {
|
||||||
|
-fx-border-color: #5fd97a;
|
||||||
|
-fx-background-color: #5fd97a;
|
||||||
|
}
|
||||||
|
|
||||||
|
CheckBox .mark {
|
||||||
|
-fx-background-color: TRANSPARENT;
|
||||||
|
}
|
||||||
|
|
||||||
|
CheckBox:selected .mark {
|
||||||
|
-fx-shape: "M384 690l452-452 60 60-512 512-238-238 60-60z";
|
||||||
|
-fx-max-width: 15;
|
||||||
|
-fx-max-height: 12;
|
||||||
|
|
||||||
|
-fx-background-color: WHITE;
|
||||||
|
|
||||||
|
-fx-border-color: WHITE;
|
||||||
|
-fx-border-width: 2;
|
||||||
|
-fx-border-radius: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
CheckBox .indeterminate-mark{
|
||||||
|
-fx-background-color: #5fd97a;
|
||||||
|
-fx-background-radius: 2;
|
||||||
|
-fx-border-width: 0;
|
||||||
|
-fx-max-width: 10;
|
||||||
|
-fx-max-height: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*-- DrLeonardo Design --*/
|
||||||
|
Button, CheckBox, ComboBox, RadioButton {
|
||||||
|
-fx-cursor: hand;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Backgrounds */
|
/* Backgrounds */
|
||||||
#layout {
|
#layout {
|
||||||
-fx-background-color: transparent;
|
-fx-background-color: transparent;
|
||||||
|
@ -317,11 +370,6 @@ .description-text {
|
||||||
-fx-font-size: 12px;
|
-fx-font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.checkboxOpt {
|
|
||||||
-jfx-checked-color: #5fd97a;
|
|
||||||
-jfx-unchecked-color: #909090;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modname {
|
.modname {
|
||||||
-fx-text-fill: #323232;
|
-fx-text-fill: #323232;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue