How to style JFXtras CalendarTimeTextField?

121 views Asked by At

I want to style the font of the CalendarTimeTextField Popup control using a CSS File.

The following entry doesn't work for me:

.CalendarTimeTextFieldSkin_popup {
     -fx-text-fill: white;
     -fx-font-style: italic;
 } 

Setting the font-type works, changing text color doesn't.

Thanks for supporting me GGK

1

There are 1 answers

0
tbeernot On

The text is rendered with a Text node (https://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html#text) so use -fx-fill and/or -fx-stroke.