diff options
| author | Mark Otto <[email protected]> | 2012-03-23 09:47:57 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-23 09:47:57 -0700 |
| commit | 0b4198492002e8aeff6a9106f62c140c82c6c75e (patch) | |
| tree | 0e6e9a3cc1e9e81c0fccc44091482314d666264e /less/forms.less | |
| parent | 5179df1928e82670a2f16ce414a42f1008c6d652 (diff) | |
| download | bootstrap-0b4198492002e8aeff6a9106f62c140c82c6c75e.tar.xz bootstrap-0b4198492002e8aeff6a9106f62c140c82c6c75e.zip | |
Fix #2758: Uneditable inputs in input-prepend/append
1. Added a missing comma to the input-append's form control stack () to fix border-radius
2. Add to the .uneditable-input in forms to remove the float as we do with all other form controls
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/forms.less b/less/forms.less index 83e1013bf..af1c7eecc 100644 --- a/less/forms.less +++ b/less/forms.less @@ -243,7 +243,7 @@ select:focus { input[class*="span"], select[class*="span"], textarea[class*="span"], -.uneditable-input { +.uneditable-input[class*="span"] { float: none; margin-left: 0; } @@ -408,7 +408,7 @@ select:focus:required:invalid { } .input-append { input, - select + select, .uneditable-input { .border-radius(3px 0 0 3px); } |
