diff options
| author | Pete Hopkins <[email protected]> | 2012-01-26 13:56:18 -0500 |
|---|---|---|
| committer | Pete Hopkins <[email protected]> | 2012-01-26 16:04:24 -0500 |
| commit | c13de3db607dad06ce992e78ffdb8c2fa6871e70 (patch) | |
| tree | 61aa5abbde3b8335152d212ec9bcf2bdca9d5d03 | |
| parent | b7f22e27ec89049f4347ae5249e97c08eb8d6a2f (diff) | |
| download | bootstrap-c13de3db607dad06ce992e78ffdb8c2fa6871e70.tar.xz bootstrap-c13de3db607dad06ce992e78ffdb8c2fa6871e70.zip | |
Fixes off-by-1px between checkbox and form label (all browsers)
| -rw-r--r-- | lib/forms.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/forms.less b/lib/forms.less index 744649f90..4aec1ec1a 100644 --- a/lib/forms.less +++ b/lib/forms.less @@ -162,7 +162,7 @@ input[type=hidden] { // Move the options list down to align with labels .controls > .radio:first-child, .controls > .checkbox:first-child { - padding-top: 6px; // has to be padding because margin collaspes + padding-top: 5px; // has to be padding because margin collaspes } // Radios and checkboxes on same line |
