diff options
| author | Mark Otto <[email protected]> | 2014-03-10 16:41:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-10 16:41:56 -0700 |
| commit | a83ca387133f4ce0aa5d773e25930363214b8e6f (patch) | |
| tree | 486dd0d36cf86a424e1c0a10e1d01b52b8a9a542 /dist/css/bootstrap.css | |
| parent | ac8db909c545751398c76b11f24096a25e07a67f (diff) | |
| download | bootstrap-a83ca387133f4ce0aa5d773e25930363214b8e6f.tar.xz bootstrap-a83ca387133f4ce0aa5d773e25930363214b8e6f.zip | |
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
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 9e230e27d..132bffa62 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2388,13 +2388,13 @@ input[type="date"].input-lg { .checkbox { display: block; min-height: 20px; - padding-left: 20px; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { - display: inline; + padding-left: 20px; + margin-bottom: 0; font-weight: normal; cursor: pointer; } |
