B4J Question How to apply css to some specific checkboxes?

Mashiane

Expert
Licensed User
Longtime User
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

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
 
Top