diff options
| author | Mark Otto <[email protected]> | 2016-02-09 00:34:41 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-02-09 00:34:41 -0800 |
| commit | 51d3267ea90b74acb970a7872a88b9743801f60c (patch) | |
| tree | 5dce8241104d6a561d282bb9b00d73596770e19f | |
| parent | d7d32c475f688b75d84fe3588d7b3e5b84c6396c (diff) | |
| download | bootstrap-51d3267ea90b74acb970a7872a88b9743801f60c.tar.xz bootstrap-51d3267ea90b74acb970a7872a88b9743801f60c.zip | |
don't set horizontal padding on .form-control-label /cc #18130 #17498
| -rw-r--r-- | scss/_forms.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss index 729ca764f..48e2dea47 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -76,7 +76,8 @@ select.form-control { // For use with horizontal and inline forms, when you need the label text to // align with the form controls. .form-control-label { - padding: $input-padding-y $input-padding-x; + padding-top: $input-padding-y; + padding-bottom: $input-padding-y; margin-bottom: 0; // Override the `<label>` default } |
