Problem/Motivation
In `themes/bs_bootstrap/templates/form/fieldset.html.twig` we have a comment and if statement inside of a legend that will cause empty lines in rendered HTML:
<legend>
<span class="fieldset-legend">Your name</span> </legend>
This empty spaces will produce a small layout bug in Firefox because Firefox will actually render single empty space before legend inner text.
We should remove all empty space and lines so ideally we have
<legend><span class="fieldset-legend">Your name</span></legend>
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | legend-remove-empty-space-3157203-2.patch | 969 bytes | pivica |
Comments
Comment #2
pivica commentedHere is a patch.
Comment #3
sasanikolic commentedTested locally, works fine for me.
Comment #5
pivica commentedThx, committed.