-
Enhancement
-
Resolution: Fixed
-
P4
-
7u6
-
Mac OS Mountain Lion
I have a stack pane containing two buttons. The stack pane has style class "my-pane" and the two buttons have style classes "on" and "off". I am able to style these buttons with the following style sheet:
.my-pane .on {
-fx-text-fill: white;
}
.my-pane .off {
-fx-text-fill: white;
}
This should of course be equivalent to
.my-pane .on, .my-pane .off {
-fx-text-fill: white;
}
however, for some reason that syntax does not seem to work.
.my-pane .on {
-fx-text-fill: white;
}
.my-pane .off {
-fx-text-fill: white;
}
This should of course be equivalent to
.my-pane .on, .my-pane .off {
-fx-text-fill: white;
}
however, for some reason that syntax does not seem to work.
- relates to
-
JDK-8087519 CSS :selector with syntax error ".class1 ," set style for all nodes on scene
-
- Open
-