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
diff options
context:
space:
mode:
-rw-r--r--docs/assets/css/bootstrap.css3
-rw-r--r--less/forms.less3
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index e6003ee147..79a7a1520d 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1957,7 +1957,8 @@ legend + .control-group {
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
-.form-horizontal textarea + .help-block {
+.form-horizontal textarea + .help-block,
+.form-horizontal span.uneditable-input + .help-block {
margin-top: 10px;
}
diff --git a/less/forms.less b/less/forms.less
index 172ed027dc..4e76173654 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -672,7 +672,8 @@ legend + .control-group {
// And apply it only to .help-block instances that follow a form control
input,
select,
- textarea {
+ textarea,
+ span.uneditable-input {
+ .help-block {
margin-top: @baseLineHeight / 2;
}