diff options
| author | Mark Otto <[email protected]> | 2012-08-27 22:42:12 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-27 22:42:12 -0700 |
| commit | 609142eee254ef0981a72a1921a053d2a7f16bc6 (patch) | |
| tree | 2021d8a7a99d174ba0a6e613c340084d1613be66 /less/forms.less | |
| parent | 7d412b1e14ea47884b5e3fd77fe0e7734f3cdd97 (diff) | |
| download | bootstrap-609142eee254ef0981a72a1921a053d2a7f16bc6.tar.xz bootstrap-609142eee254ef0981a72a1921a053d2a7f16bc6.zip | |
fixes #4729: only use margin-top on .help-block when it follows an input, select, textarea
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less index d2445b987..2864bff0d 100644 --- a/less/forms.less +++ b/less/forms.less @@ -633,9 +633,16 @@ legend + .control-group { } // Remove bottom margin on block level help text since that's accounted for on .control-group .help-block { - margin-top: @baseLineHeight / 2; margin-bottom: 0; } + // And apply it only to .help-block instances that follow a form control + input, + select, + textarea { + + .help-block { + margin-top: @baseLineHeight / 2; + } + } // Move over buttons in .form-actions to align with .controls .form-actions { padding-left: 160px; |
