aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-03-23 09:47:57 -0700
committerMark Otto <[email protected]>2012-03-23 09:47:57 -0700
commit0b4198492002e8aeff6a9106f62c140c82c6c75e (patch)
tree0e6e9a3cc1e9e81c0fccc44091482314d666264e /docs/assets/css/bootstrap.css
parent5179df1928e82670a2f16ce414a42f1008c6d652 (diff)
downloadbootstrap-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 'docs/assets/css/bootstrap.css')
-rw-r--r--docs/assets/css/bootstrap.css5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index bdf6a771f..634ea7a53 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -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;