Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: chrome/browser/resources/print_preview/settings/margin_settings.html

Issue 565213005: Make Print Preview elements transitions smoother. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698