From dd82b75bb9c4ccc1b94dbf1f177142390de57941 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 10 Mar 2014 16:41:56 -0700 Subject: [PATCH] (less) Fixes #13003: Move padding on radio and checkbox options from the surrounding div to the label to remove the no-click deadzone caused by negative margin --- forms.less | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/forms.less b/forms.less index de17d1c82c6c..33ef7995115f 100644 --- a/forms.less +++ b/forms.less @@ -204,9 +204,11 @@ input[type="date"] { min-height: @line-height-computed; // clear the floating input if there is no label text margin-top: 10px; margin-bottom: 10px; - padding-left: 20px; + label { - display: inline; + // display: inline; + padding-left: 20px; + margin-bottom: 0; font-weight: normal; cursor: pointer; }