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
There's this style rule defined in the buttons module (line 244 of _buttons.scss)
// Hide radio buttons and checkboxes within button groups
input[type=checkbox], input[type=radio] {
position: absolute;
left: -9999em;
}
This hides all checkboxes and radio buttons. It's accompanied by a whole set of other style rules that replace standard checkboxes and radio buttons with icomoon icons and style the label elements to look like buttons. However, these rules are only applied to checkboxes accompanied by labels with the class "btn". This results in checkboxes that aren't accompanied by "btn" labels being hidden but not replaced with anything.
There's this style rule defined in the buttons module (line 244 of _buttons.scss)
This hides all checkboxes and radio buttons. It's accompanied by a whole set of other style rules that replace standard checkboxes and radio buttons with icomoon icons and style the label elements to look like buttons. However, these rules are only applied to checkboxes accompanied by labels with the class "btn". This results in checkboxes that aren't accompanied by "btn" labels being hidden but not replaced with anything.
You can see the issue in lines 135-242 of _buttons.scss.
The text was updated successfully, but these errors were encountered: