2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-30 15:24:08 +03:00

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
This commit is contained in:
Mark Otto
2012-03-23 09:47:57 -07:00
parent 5179df1928
commit 0b41984920
5 changed files with 117 additions and 4 deletions
+3 -2
View File
@@ -791,7 +791,7 @@ select:focus {
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input {
.uneditable-input[class*="span"] {
float: none;
margin-left: 0;
}
@@ -1045,7 +1045,8 @@ select:focus:required:invalid:focus {
margin-right: -1px;
}
.input-append input,
.input-append select .uneditable-input {
.input-append select,
.input-append .uneditable-input {
-webkit-border-radius: 3px 0 0 3px;
-moz-border-radius: 3px 0 0 3px;
border-radius: 3px 0 0 3px;