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

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

Issue 556363003: Print Preview UI tweaks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust browser_tests accordingly. 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="copies-settings" class="two-column" hidden> 1 <div id="copies-settings" class="two-column" hidden>
2 <h1 i18n-content="copiesLabel"></h1> 2 <h1 id="copies-label" i18n-content="copiesLabel"></h1>
3 <div class="right-column"> 3 <div class="right-column">
4 <div id="copies-settings-box"> 4 <div id="copies-settings-box">
5 <input class="copies" type="text" value="1" maxlength="3"> 5 <input class="copies" type="text" value="1" maxlength="3"
6 aria-labelledby="copies-label">
6 <button class="increment" i18n-values="title:incrementTitle;">+</button> 7 <button class="increment" i18n-values="title:incrementTitle;">+</button>
7 <button class="decrement" i18n-values="title:decrementTitle;">–</button> 8 <button class="decrement" i18n-values="title:decrementTitle;">–</button>
8 <div class="collate-container checkbox" aria-live="polite" hidden><label> 9 <div class="collate-container checkbox" aria-live="polite" hidden><label>
9 <input class="collate" type="checkbox" checked> 10 <input class="collate" type="checkbox" checked
10 <span i18n-content="optionCollate"></span> 11 aria-labelledby="copies-collate-label">
12 <span id="copies-collate-label" i18n-content="optionCollate"></span>
11 </label></div> 13 </label></div>
12 </div> 14 </div>
13 <span class="hint" i18n-content="copiesInstruction" aria-live="polite"> 15 <span class="hint" i18n-content="copiesInstruction" aria-live="polite">
14 </span> 16 </span>
15 </div> 17 </div>
16 </div> 18 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698