From 27da9b290a657ed4ab299943c59e133286fef9fd Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 28 Mar 2015 22:43:33 -0700 Subject: [PATCH] Fixes #15536: Resize .control-label's font-size and account for border on static form control in form groups --- less/forms.less | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/less/forms.less b/less/forms.less index e4b50629e9..0f42e8ac03 100644 --- a/less/forms.less +++ b/less/forms.less @@ -326,10 +326,10 @@ input[type="checkbox"] { } .form-control-static { height: @input-height-small; - padding: @padding-small-vertical @padding-small-horizontal; + min-height: (@line-height-computed + @font-size-small); + padding: (@padding-small-vertical + 1) @padding-small-horizontal; font-size: @font-size-small; line-height: @line-height-small; - min-height: (@line-height-computed + @font-size-small); } } @@ -342,10 +342,10 @@ input[type="checkbox"] { } .form-control-static { height: @input-height-large; - padding: @padding-large-vertical @padding-large-horizontal; + min-height: (@line-height-computed + @font-size-large); + padding: (@padding-large-vertical + 1) @padding-large-horizontal; font-size: @font-size-large; line-height: @line-height-large; - min-height: (@line-height-computed + @font-size-large); } } @@ -561,6 +561,7 @@ input[type="checkbox"] { @media (min-width: @screen-sm-min) { .control-label { padding-top: ((@padding-large-vertical * @line-height-large) + 1); + font-size: @font-size-large; } } } @@ -568,6 +569,7 @@ input[type="checkbox"] { @media (min-width: @screen-sm-min) { .control-label { padding-top: (@padding-small-vertical + 1); + font-size: @font-size-small; } } }