diff options
| author | Mark Otto <[email protected]> | 2015-08-04 20:03:45 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-08-04 20:03:45 -0700 |
| commit | 709a077c368f4cd6563ec7f4f3f8e80b4b584a78 (patch) | |
| tree | 8325d1151da2b9d7cdd46caffc7f8819a27fd80e | |
| parent | f9bee7deb6564234294925bd7480b93060b6d5a9 (diff) | |
| download | bootstrap-709a077c368f4cd6563ec7f4f3f8e80b4b584a78.tar.xz bootstrap-709a077c368f4cd6563ec7f4f3f8e80b4b584a78.zip | |
fixes #16824: Correct the match on .control-label sizing for input group sizes
| -rw-r--r-- | less/forms.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less index 910c1e13b..e8b071a13 100644 --- a/less/forms.less +++ b/less/forms.less @@ -597,7 +597,7 @@ input[type="checkbox"] { .form-group-lg { @media (min-width: @screen-sm-min) { .control-label { - padding-top: ((@padding-large-vertical * @line-height-large) + 1); + padding-top: (@padding-large-vertical + 1); font-size: @font-size-large; } } |
