Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-07-07 23:52:05 +0400
committerMark Otto <markotto@twitter.com>2012-07-07 23:52:05 +0400
commit3f2f96b0d71e64bd53d5175d0876f25f23a7835b (patch)
tree5c2d08526a790117d354b247847aa8e39357de79 /docs
parente2b777d9a3ea12ec10f6046975ec0f43c6636601 (diff)
reoder forms a bit
Diffstat (limited to 'docs')
-rw-r--r--docs/assets/css/bootstrap.css77
1 files changed, 36 insertions, 41 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index babfe6351b..39ea788bec 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -995,11 +995,6 @@ input[type="checkbox"] {
width: auto;
}
-.uneditable-textarea {
- width: auto;
- height: auto;
-}
-
select,
input[type="file"] {
height: 28px;
@@ -1030,6 +1025,42 @@ input[type="checkbox"]:focus {
outline-offset: -2px;
}
+.uneditable-input,
+.uneditable-textarea {
+ color: #999999;
+ cursor: not-allowed;
+ background-color: #fcfcfc;
+ border-color: #cccccc;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
+}
+
+.uneditable-input {
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.uneditable-textarea {
+ width: auto;
+ height: auto;
+}
+
+input:-moz-placeholder,
+textarea:-moz-placeholder {
+ color: #999999;
+}
+
+input:-ms-input-placeholder,
+textarea:-ms-input-placeholder {
+ color: #999999;
+}
+
+input::-webkit-input-placeholder,
+textarea::-webkit-input-placeholder {
+ color: #999999;
+}
+
.radio,
.checkbox {
min-height: 18px;
@@ -1336,32 +1367,6 @@ select:focus:required:invalid:focus {
clear: both;
}
-.uneditable-input {
- overflow: hidden;
- white-space: nowrap;
- cursor: not-allowed;
- background-color: #ffffff;
- border-color: #eee;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
-}
-
-input:-moz-placeholder,
-textarea:-moz-placeholder {
- color: #999999;
-}
-
-input:-ms-input-placeholder,
-textarea:-ms-input-placeholder {
- color: #999999;
-}
-
-input::-webkit-input-placeholder,
-textarea::-webkit-input-placeholder {
- color: #999999;
-}
-
.help-block,
.help-inline {
color: #595959;
@@ -1412,11 +1417,6 @@ textarea::-webkit-input-placeholder {
z-index: 2;
}
-.input-prepend .uneditable-input,
-.input-append .uneditable-input {
- border-left-color: #ccc;
-}
-
.input-prepend .add-on,
.input-append .add-on {
display: inline-block;
@@ -1470,11 +1470,6 @@ textarea::-webkit-input-placeholder {
border-radius: 3px 0 0 3px;
}
-.input-append .uneditable-input {
- border-right-color: #ccc;
- border-left-color: #eee;
-}
-
.input-append .add-on:last-child,
.input-append .btn:last-child {
-webkit-border-radius: 0 3px 3px 0;