2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-18 12:39:41 +03:00

Fixes #11990 and #12159: Make range inputs block level and 100% wide by default

This commit is contained in:
Mark Otto
2014-01-09 18:07:14 -08:00
parent 99b66c1f2c
commit 7f153974e1
6 changed files with 14 additions and 4 deletions
+4
View File
@@ -1651,6 +1651,10 @@ input[type="checkbox"] {
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+6
View File
@@ -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] {