diff options
| author | Mark Otto <[email protected]> | 2014-03-09 17:12:39 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-09 17:12:39 -0700 |
| commit | 2f955907f95ad9b7f42f624eb11142339709c188 (patch) | |
| tree | 4fc6c6b22e3d1624054e280406de6eeed515cfa9 /dist/css/bootstrap.css | |
| parent | 37b342b18a921b46ad9e720c774274f9c4cf5981 (diff) | |
| download | bootstrap-2f955907f95ad9b7f42f624eb11142339709c188.tar.xz bootstrap-2f955907f95ad9b7f42f624eb11142339709c188.zip | |
Fixes #12669: Properly reset line-height on date inputs for all sizes; Fix IE8+'s misaslignment of text within date inputs
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index a5c695d80..7dda6f701 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2373,6 +2373,13 @@ input[type="search"] { } input[type="date"] { line-height: 34px; + line-height: 1.42857143 \0; +} +input[type="date"].input-sm { + line-height: 30px; +} +input[type="date"].input-lg { + line-height: 46px; } .form-group { margin-bottom: 15px; |
