Is there a way to do something similar to "not([name="selector"]) " in JavaFX?
I have a VBox with a styleClass and I want to style its components except for one of them which is indexed by a specific selector, here's approximately what I want to do:
.class:not([name="idButton"]){
-fx-opacity :30%;
}
but this css code doesn't work.