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

Unified Diff: chrome/browser/resources/print_preview/copies_settings.html

Issue 8371017: Print Preview: Changing the structure of the html/css. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating unittests Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/print_preview/copies_settings.html
diff --git a/chrome/browser/resources/print_preview/copies_settings.html b/chrome/browser/resources/print_preview/copies_settings.html
index 88529af522ac00bbadc29705f4bf5a1df8c9de0b..0d779512a492d78f29b1459919cfb28fcd18665b 100644
--- a/chrome/browser/resources/print_preview/copies_settings.html
+++ b/chrome/browser/resources/print_preview/copies_settings.html
@@ -1,22 +1,24 @@
-<div id="copies-option" class="two-column option visible">
+<div id="copies-option" class="two-column visible">
<h1 i18n-content="copiesLabel"></h1>
- <div>
- <input id="copies" type="text" value="1" maxlength="3"
- class="number small"/>
- <button id="increment"
- i18n-values="title:incrementTitle;">+</button>
- <button id="decrement"
- i18n-values="title:decrementTitle;">–</button>
- <span id="collate-option" hidden aria-hidden="true" aria-live="polite">
- <input id="collate" type="checkbox"/>
- <label for="collate" i18n-content="optionCollate"></label>
+ <div class="right-column">
+ <div>
+ <input id="copies" type="text" value="1" maxlength="3"
+ class="number small">
+ <button id="increment"
+ i18n-values="title:incrementTitle;">+</button>
+ <button id="decrement"
+ i18n-values="title:decrementTitle;">–</button>
+ <span id="collate-option" hidden aria-hidden="true" aria-live="polite">
+ <input id="collate" type="checkbox">
+ <label for="collate" i18n-content="optionCollate"></label>
+ </span>
+ </div>
+ <span id="copies-hint" class="hint"
+ i18n-content="copiesInstruction" aria-hidden="true" aria-live="polite">
</span>
- </div>
- <span id="copies-hint" class="hint"
- i18n-content="copiesInstruction" aria-hidden="true" aria-live="polite">
- </span>
- <div id="two-sided-div">
- <input id="two-sided" type="checkbox"/>
- <label for="two-sided" i18n-content="optionTwoSided"></label>
+ <div id="two-sided-div">
+ <input id="two-sided" type="checkbox">
+ <label for="two-sided" i18n-content="optionTwoSided"></label>
+ </div>
</div>
</div>
« no previous file with comments | « chrome/browser/resources/print_preview/color_settings.js ('k') | chrome/browser/resources/print_preview/copies_settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698