diff options
| author | Mark Otto <[email protected]> | 2012-02-20 18:56:05 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-20 18:56:05 -0800 |
| commit | 143b3db2c9c97b281b0c4ede937d136e9f904651 (patch) | |
| tree | 18d39b205fffbc81b6c0487e8003bdca4a39e9e0 /docs/assets/css/bootstrap.css | |
| parent | 331c85724afa7dbf41799967718b16e75f7ca816 (diff) | |
| download | bootstrap-143b3db2c9c97b281b0c4ede937d136e9f904651.tar.xz bootstrap-143b3db2c9c97b281b0c4ede937d136e9f904651.zip | |
update inline forms to resolve checkbox label with space in it and overlapping content, per #1969
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index a74f461c2..1d12c816f 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1001,9 +1001,18 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec .form-search .checkbox, .form-inline .radio, .form-inline .checkbox { + padding-left: 0; margin-bottom: 0; vertical-align: middle; } +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-left: 0; + margin-right: 3px; +} .control-group { margin-bottom: 9px; } |
