You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public CheckBoxSkin(CheckBox checkbox) {
super(checkbox, new ButtonBehavior<CheckBox>(checkbox));
box.getStyleClass().setAll("box");
innerbox = new StackPane();
innerbox.getStyleClass().setAll("mark");
...
}
however mark is being redefined in bootstrap.css as:
this causes the checkbox to be small and the mark is not visible - a workaround is to redefine affected check-box style e.g. from modena in your css file (loaded after bootstrapfx.css)
Hi,
I'm still seeing effect of mark in bootstrapfx.css - the size is correct but the tick mark is yellow and there is no visual difference between selected and not.
CheckBoxSkin uses css selectors "box" and "mark"
however mark is being redefined in bootstrap.css as:
this causes the checkbox to be small and the mark is not visible - a workaround is to redefine affected check-box style e.g. from modena in your css file (loaded after bootstrapfx.css)
The text was updated successfully, but these errors were encountered: