This time a new control that was not present on the JMetro for javafx2.
The Tooltip:
The style is the same for the dark and light versions of jmetro. With javafx 2 it was not possible to style a Tooltip like this because it had a page corner like effect that wasn’t possible to remove.
Hi Pedro!
Well, you could already hide that tooltip page corner in JavaFX by doing something like this:
.page-corner {
-fx-shape: ” “;
-fx-padding: 0;
-fx-background-color: transparent;
-fx-effect: dropshadow(three-pass-box, transparent, 0, 0, 0, 0);
}
Best regards,
JI