The style
-fx-cursor: h-resize;
does not work as documented in http://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html. Instead this is required:
-fx-cursor: h_resize;
Apparently there is a direct translation of the corresponding Cursor.* constants which use underscores for several cursors.
-fx-cursor: h-resize;
does not work as documented in http://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html. Instead this is required:
-fx-cursor: h_resize;
Apparently there is a direct translation of the corresponding Cursor.* constants which use underscores for several cursors.