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

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

Issue 8566025: print preview css: fix labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/layout_settings.html
diff --git a/chrome/browser/resources/print_preview/layout_settings.html b/chrome/browser/resources/print_preview/layout_settings.html
index 78b4b9a76a256d9744dee40533634293a73d257c..9703089a56d9a3a817fe20f7c34269d240bd9d5f 100644
--- a/chrome/browser/resources/print_preview/layout_settings.html
+++ b/chrome/browser/resources/print_preview/layout_settings.html
@@ -2,12 +2,16 @@
<h1 i18n-content="layoutLabel"></h1>
<div class="right-column">
<div>
- <input id="portrait" type="radio" name="layout" checked>
- <label for="portrait" i18n-content="optionPortrait"></label>
+ <label>
+ <input id="portrait" type="radio" name="layout" checked>
+ <span i18n-content="optionPortrait"></span>
+ </label>
</div>
<div>
- <input id="landscape" type="radio" name="layout">
- <label for="landscape" i18n-content="optionLandscape"></label>
+ <label>
+ <input id="landscape" type="radio" name="layout">
+ <span i18n-content="optionLandscape"></span>
+ </label>
</div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698