Skip to content

Commit

Permalink
Fixes #11990 and #12159: Make range inputs block level and 100% wide …
Browse files Browse the repository at this point in the history
…by default
  • Loading branch information
mdo committed Jan 10, 2014
1 parent 99b66c1 commit 7f15397
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions dist/css/bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/bootstrap.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/dist/css/bootstrap.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/dist/css/bootstrap.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ input[type="file"] {
display: block;
}

// Make range inputs behave like textual form controls
input[type="range"] {
display: block;
width: 100%;
}

// Make multiple select elements height not fixed
select[multiple],
select[size] {
Expand Down

0 comments on commit 7f15397

Please sign in to comment.