I have a form with a mix of editable and read-only fields that I want to use with Bootstrap. Editable fields align correctly, but the read-only fields are not, as shown in this screenshot:

HTML used:
<form class="form-horizontal"> <div class="control-group"> <label class="control-label">Name</label> <div class="controls"> John Smith </div> </div> <div class="control-group"> <label class="control-label" for="date_of_birth">Date of Birth</label> <div class="controls"> <input name="date_of_birth" id="date_of_birth" size="16" type="text" value="" /> <span class="help-inline">dd/mm/yyyy</span> </div> </div> </form>
I don’t want to show read-only input for fields that cannot be edited, because users get confused / frustrated when they cannot click in the field, and these are fields that can never be edited so it really doesn't make sense to show them as disabled / only for reading. I just want the text to display and align correctly with the label. Is there a way I can do this, either using something in Bootstrap or overriding the default styles?
My question is similar to this one that I didn’t answer (at least not the answer to the original question), and since Bootstrap had several issues in the last 7 months, I thought it was worth asking again if something changes.
twitter bootstrap
pwaring Nov 09 2018-12-12T00: 00Z
source share