diff options
| author | Mark Otto <[email protected]> | 2012-08-22 20:32:47 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-22 20:32:47 -0700 |
| commit | ac4420237c166538e34768b7cdc64a38470ad493 (patch) | |
| tree | f22e2168fdf0fbc5278a7933dce13e56ceafc74d /less/forms.less | |
| parent | 4775bc910cbf01a455e4be3f40efb23410113e20 (diff) | |
| download | bootstrap-ac4420237c166538e34768b7cdc64a38470ad493.tar.xz bootstrap-ac4420237c166538e34768b7cdc64a38470ad493.zip | |
fixes #4591 properly: remove -1px left margin on .input-append .add-on
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less index c766f5d9c..36f37496b 100644 --- a/less/forms.less +++ b/less/forms.less @@ -441,7 +441,6 @@ select:focus:required:invalid { } .add-on, .btn { - margin-left: -1px; vertical-align: top; .border-radius(0); } @@ -466,6 +465,10 @@ select:focus:required:invalid { .uneditable-input { .border-radius(@inputBorderRadius 0 0 @inputBorderRadius); } + .add-on, + .btn { + margin-left: -1px; + } .add-on:last-child, .btn:last-child { .border-radius(0 @inputBorderRadius @inputBorderRadius 0); |
