OLD | NEW |
1 <div id="margin-settings" class="two-column margin-settings" hidden> | 1 <div id="margin-settings" class="two-column margin-settings" hidden> |
2 <h1 id="margin-label" i18n-content="marginsLabel"></h1> | 2 <div class="left-column"> |
| 3 <h1 id="margin-label" i18n-content="marginsLabel"></h1> |
| 4 </div> |
3 <div class="right-column"> | 5 <div class="right-column"> |
4 <select class="margin-settings-select" aria-labelledby="margin-label"> | 6 <select class="margin-settings-select" aria-labelledby="margin-label"> |
5 <!-- The order of these options must match the natural order of their | 7 <!-- The order of these options must match the natural order of their |
6 values, which come from print_preview.ticket_items.MarginsType.Value. --> | 8 values, which come from print_preview.ticket_items.MarginsType.Value. --> |
7 <option i18n-content="defaultMargins" value="0" selected></option> | 9 <option i18n-content="defaultMargins" value="0" selected></option> |
8 <option i18n-content="noMargins" value="1"></option> | 10 <option i18n-content="noMargins" value="1"></option> |
9 <option i18n-content="minimumMargins" value="2"></option> | 11 <option i18n-content="minimumMargins" value="2"></option> |
10 <option i18n-content="customMargins" value="3"></option> | 12 <option i18n-content="customMargins" value="3"></option> |
11 </select> | 13 </select> |
12 </div> | 14 </div> |
13 </div> | 15 </div> |
OLD | NEW |