diff options
| author | Mark Otto <[email protected]> | 2014-06-18 18:19:17 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-06-18 18:19:17 -0700 |
| commit | 74a264fb98ced0228d385d601e9edd913bb1b173 (patch) | |
| tree | e3272926dcf1339fa1b3786f9d4ffd330340cea9 /dist/css/bootstrap.css | |
| parent | 46e8a5817d0ddb98343dde1e0f0f8b335aba41e3 (diff) | |
| download | bootstrap-74a264fb98ced0228d385d601e9edd913bb1b173.tar.xz bootstrap-74a264fb98ced0228d385d601e9edd913bb1b173.zip | |
fixes #13021: add .form-group-sm/-lg
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index a3c5f9474..e78f38c4e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2480,7 +2480,8 @@ fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } -.input-sm { +.input-sm, +.form-horizontal .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; @@ -2495,7 +2496,8 @@ textarea.input-sm, select[multiple].input-sm { height: auto; } -.input-lg { +.input-lg, +.form-horizontal .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; @@ -2705,6 +2707,16 @@ select[multiple].input-lg { top: 0; right: 15px; } +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.3px; + } +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + } +} .btn { display: inline-block; padding: 6px 12px; |
