JavaFX Scene Builder: pointer cursor onMouseOver
You can add the following Style
to the Node in question:
-fx-cursor: hand;
For additional options, check out the JavaFX CSS Documentation
for the new one you can use this in your css file
.glyph-icon{
-fx-fill: White;
}
.glyph-icon:hover{
-fx-cursor: hand;
-fx-fill: black;
}
`