diff options
| author | Mark Otto <[email protected]> | 2013-07-20 21:09:03 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-20 21:09:03 -0700 |
| commit | a63db4d2f91c056310fc9a24891dbd161672451b (patch) | |
| tree | f5f41e368b3522d1c170b8d3d067c013d9eb0f39 /dist/css/bootstrap.css | |
| parent | df851b40d1accb1c6db44ac77a28c2e76273581b (diff) | |
| download | bootstrap-a63db4d2f91c056310fc9a24891dbd161672451b.tar.xz bootstrap-a63db4d2f91c056310fc9a24891dbd161672451b.zip | |
Update file input to remove height and line-height
This particular form control is wildly inaccurate across browsers, so
we're removing the `height` and `line-height`, but adding `display:
block` so it renders similarly to our other inputs.
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index eaa17105c..6946ab2ec 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1474,10 +1474,7 @@ input[type="checkbox"] { } input[type="file"] { - height: 38px; - /* In IE7, the height of the select element cannot be changed by height, only font-size. TODO: Check if this is still needed when dropping IE7 support */ - - line-height: 38px; + display: block; } select[multiple], |
