I've been able to style my application's several PropertySheet controls using - e.g.:
which yields this:
But I don't know how to style the field labels (from the auto-set and hard-to-read white color above instead to, say, black).
Further, I have no idea if/how to style the [by name or category] filter toolbar background's color.
As a nice-to-have, I'd like the option to also style the property sheets' individual sub-components (like the text field above, and the 3 other types shown below as examples):
I'd prefer to ultimately add several property sheet-specific style classes (loaded from my application's main .css file), like shown here - e.g.:
B4X:
cpsSettings.Style = "-fx-border-color: darkgrey; -fx-background:transparent;"
which yields this:
But I don't know how to style the field labels (from the auto-set and hard-to-read white color above instead to, say, black).
Further, I have no idea if/how to style the [by name or category] filter toolbar background's color.
As a nice-to-have, I'd like the option to also style the property sheets' individual sub-components (like the text field above, and the 3 other types shown below as examples):
I'd prefer to ultimately add several property sheet-specific style classes (loaded from my application's main .css file), like shown here - e.g.:
B4X:
.MyPropertySheet1 .property-sheet {
-fx-background: transparent;
-fx-border-color: darkgrey;
??
??
....
}