How can I create my own CSS pseudo classes in Java FX 2?
So that in CSS file I could use this style
.MyButton : online{ }
In FX 1 it could be done overriding methods like
public long impl_getPseudoClassState() {}
but they are now deprecated :-(
Is there a new way?