Hi
How can I apply this to some of my checkboxes and not all of them? I dont want to load this on the form
Thanks
How can I apply this to some of my checkboxes and not all of them? I dont want to load this on the form
B4X:
.check-box .box {
-fx-background-color: white;
-fx-border-color:grey;
-fx-border-radius:3px;
}
.check-box:selected .mark {
-fx-background-color: white;
}
.check-box:selected .box {
-fx-background-color: #28a3f4;
}
Thanks