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

Unified Diff: chrome/browser/resources/options/chromeos_accounts_options.html

Issue 6541086: WebUI Prefs: Don't use display:block for labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove pointless rul Created 9 years, 10 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/options/chromeos_accounts_options.html
diff --git a/chrome/browser/resources/options/chromeos_accounts_options.html b/chrome/browser/resources/options/chromeos_accounts_options.html
index 2f5af2a3d08d6fd3455d4bd0b93033d37fdbb208..0b5838aee7a2688991469ef933b75f0f1c74889d 100644
--- a/chrome/browser/resources/options/chromeos_accounts_options.html
+++ b/chrome/browser/resources/options/chromeos_accounts_options.html
@@ -9,29 +9,35 @@
<table class="option-control-table">
<tr>
<td class="option-name">
- <label class="checkbox">
- <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
- type="checkbox">
- <span i18n-content="allow_BWSI"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
+ type="checkbox">
+ <span i18n-content="allow_BWSI"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name">
- <label class="checkbox">
- <input id="showUserNamesCheck"
- pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
- <span i18n-content="show_user_on_signin"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="showUserNamesCheck"
+ pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
+ <span i18n-content="show_user_on_signin"></span>
+ </label>
+ </div>
</td>
</tr>
<tr>
<td class="option-name">
- <label class="checkbox">
- <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
- type="checkbox" inverted_pref>
- <span i18n-content="use_whitelist"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
+ type="checkbox" inverted_pref>
+ <span i18n-content="use_whitelist"></span>
+ </label>
+ </div>
</td>
</tr>
<tr><td>&nbsp;</td></tr>

Powered by Google App Engine
This is Rietveld 408576698