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
// Make file inputs better match text inputs by forcing them to new lines.
.form-control-file,
.form-control-range {
display: block;
width: 100%;
}
but .form-control-range is not documented anywhere. @mdo Any chance to treat the new range control as a standard or default rather than a custom, and change the class name to .from-control-range or .form-range?
Thanks.
The text was updated successfully, but these errors were encountered:
I agree that it should be documented.
As for .custom-range, it's called "custom" because it looks the same across every browser. .form-control extends native styles
The new range control is defined with
.custom-range
class, but I wonder why it is CUSTOM.The following is a list of bootstrap custom forms:
Why not
.from-control-range
or.form-range
?Furthermore, I found
.form-control-range
class in the current SCSS:bootstrap/scss/_forms.scss
Lines 75 to 80 in f81f419
but
.form-control-range
is not documented anywhere.@mdo Any chance to treat the new range control as a standard or default rather than a custom, and change the class name to
.from-control-range
or.form-range
?Thanks.
The text was updated successfully, but these errors were encountered: