diff options
| author | Mark Otto <[email protected]> | 2012-03-11 23:21:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-11 23:21:38 -0700 |
| commit | 7c2ed0c0958dcdb518970617a013538310494d20 (patch) | |
| tree | 48f0e67c648e92d0dfaf8d3e01a93fdb95dd83b9 /less/forms.less | |
| parent | 5eed370856424362e23b1a5e02dd3c58c83dd30f (diff) | |
| download | bootstrap-7c2ed0c0958dcdb518970617a013538310494d20.tar.xz bootstrap-7c2ed0c0958dcdb518970617a013538310494d20.zip | |
resolve #1972, allowing add-ons at beginning and end of input-prepend/append
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/less/forms.less b/less/forms.less index 5045dc254..a5e8c761f 100644 --- a/less/forms.less +++ b/less/forms.less @@ -379,7 +379,6 @@ select:focus:required:invalid { width: auto; min-width: 16px; height: @baseLineHeight; - margin-right: -1px; padding: 4px 5px; font-weight: normal; line-height: @baseLineHeight; @@ -395,6 +394,11 @@ select:focus:required:invalid { border-color: @green; } } +.input-prepend { + .add-on { + margin-right: -1px; + } +} .input-append { input, select @@ -406,7 +410,22 @@ select:focus:required:invalid { border-right-color: #ccc; } .add-on { - margin-right: 0; + margin-left: -1px; + .border-radius(0 3px 3px 0); + } +} +// Remove all border-radius for inputs with both prepend and append +.input-prepend.input-append { + input, + select, + .uneditable-input { + .border-radius(0); + } + .add-on:first-child { + margin-right: -1px; + .border-radius(3px 0 0 3px); + } + .add-on:last-child { margin-left: -1px; .border-radius(0 3px 3px 0); } |
