In my custom.css.scss file, I have:
.field_with_errors {
@extend .control-group;
@extend .error;
}
The problem is that for Boostrap horizontal forms, the fields will not remain alligned.
The html(generated by rails) is:
<div class="control-group">
<div class="field_with_errors"><label class="control-label" for="bookmark_url">Url</label></div>
<div class="controls">
<div class="field_with_errors"><input id="bookmark_url" name="bookmark[url]" size="30" type="text" value=""></div>
</div>
</div>
Here is a jsfiddle to illustrate the problem.
Anyone know how to fix this?