aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-05-15 09:07:19 -0700
committerMark Otto <[email protected]>2012-05-15 09:07:19 -0700
commita9d4b667ff6349a54cdd470c82c7ef3c88de4165 (patch)
tree85c5c129f494b93f4cd85dd95b26bb8714995909
parentecf84bdac51a9c56d18c4a25b3d5b0c66a09151a (diff)
downloadbootstrap-a9d4b667ff6349a54cdd470c82c7ef3c88de4165.tar.xz
bootstrap-a9d4b667ff6349a54cdd470c82c7ef3c88de4165.zip
finish fixing uneditable-input and remake
-rw-r--r--docs/assets/css/bootstrap.css6
-rw-r--r--less/forms.less6
2 files changed, 8 insertions, 4 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index fabedd1f7..46e163a46 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -786,7 +786,8 @@ input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
-input[type="color"] {
+input[type="color"],
+.uneditable-input {
display: inline-block;
height: 18px;
padding: 4px;
@@ -815,7 +816,8 @@ input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
-input[type="color"] {
+input[type="color"],
+.uneditable-input {
background-color: #ffffff;
border: 1px solid #cccccc;
-webkit-border-radius: 3px;
diff --git a/less/forms.less b/less/forms.less
index 277cdf42f..d70dd9c4d 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -77,7 +77,8 @@ input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
-input[type="color"] {
+input[type="color"],
+.uneditable-input {
display: inline-block;
height: @baseLineHeight;
padding: 4px;
@@ -108,7 +109,8 @@ input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
-input[type="color"] {
+input[type="color"],
+.uneditable-input {
background-color: @inputBackground;
border: 1px solid @inputBorder;
.border-radius(@inputBorderRadius);