diff options
| author | Mark Otto <[email protected]> | 2014-01-09 18:07:14 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-01-09 18:07:14 -0800 |
| commit | 7f153974e10980dccbdd485e63941b591e925148 (patch) | |
| tree | 5b1dd696fa5e55d1e0bb4810a9192b7887e02a6c /dist/css/bootstrap.css | |
| parent | 99b66c1f2c1556c00e1dd4aaf593f31b7b36071a (diff) | |
| download | bootstrap-7f153974e10980dccbdd485e63941b591e925148.tar.xz bootstrap-7f153974e10980dccbdd485e63941b591e925148.zip | |
Fixes #11990 and #12159: Make range inputs block level and 100% wide by default
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 3ccabd364..9d9292f71 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -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; |
