diff options
| author | Mark Otto <[email protected]> | 2014-02-07 02:58:10 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-02-07 02:58:10 -0800 |
| commit | 4d7b2ddba92e47f923d22d9d7b23cb7b0a3e0bc2 (patch) | |
| tree | 0f8006d67156677cd325c59c3d8248e57fee9eef /dist/css/bootstrap.css | |
| parent | cae76171d0bb6f461829b063735ffd84d6b2a07f (diff) | |
| download | bootstrap-4d7b2ddba92e47f923d22d9d7b23cb7b0a3e0bc2.tar.xz bootstrap-4d7b2ddba92e47f923d22d9d7b23cb7b0a3e0bc2.zip | |
Fixes #12486: Restore full width inputs for input groups in inline forms and navbars
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 66db05317..958f830d7 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1723,6 +1723,7 @@ output { .form-control::-webkit-input-placeholder { color: #999; } +.form-control:disabled, .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { @@ -1939,6 +1940,9 @@ select[multiple].input-lg { width: auto; vertical-align: middle; } + .form-inline .input-group > .form-control { + width: 100%; + } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; @@ -3854,6 +3858,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn { width: auto; vertical-align: middle; } + .navbar-form .input-group > .form-control { + width: 100%; + } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; |
