Commit fe7b6dec authored by Mark Otto's avatar Mark Otto
Browse files

Merge pull request #6039 from desheikh/2.2.2-wip

help-block margin-top should also apply after a span.uneditable-input
parents 322a5635 ddd15448
Showing with 4 additions and 2 deletions
+4 -2
...@@ -1957,7 +1957,8 @@ legend + .control-group { ...@@ -1957,7 +1957,8 @@ legend + .control-group {
.form-horizontal input + .help-block, .form-horizontal input + .help-block,
.form-horizontal select + .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; margin-top: 10px;
} }
......
...@@ -672,7 +672,8 @@ legend + .control-group { ...@@ -672,7 +672,8 @@ legend + .control-group {
// And apply it only to .help-block instances that follow a form control // And apply it only to .help-block instances that follow a form control
input, input,
select, select,
textarea { textarea,
span.uneditable-input {
+ .help-block { + .help-block {
margin-top: @baseLineHeight / 2; margin-top: @baseLineHeight / 2;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment