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

Unified Diff: chrome/browser/resources/options/chromeos_system_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_system_options.html
diff --git a/chrome/browser/resources/options/chromeos_system_options.html b/chrome/browser/resources/options/chromeos_system_options.html
index 93cf00b54f52b246acf274f852ad149480336500..a775a2e3f591a49fd678a47696019ac32394b780 100644
--- a/chrome/browser/resources/options/chromeos_system_options.html
+++ b/chrome/browser/resources/options/chromeos_system_options.html
@@ -34,12 +34,14 @@
</tr>
<tr>
<td class="option-name" colspan="2">
- <label class="checkbox">
- <input id="tap-to-click-check"
- pref="settings.touchpad.enable_tap_to_click"
- type="checkbox">
- <span i18n-content="enable_tap_to_click"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="tap-to-click-check"
+ pref="settings.touchpad.enable_tap_to_click"
+ type="checkbox">
+ <span i18n-content="enable_tap_to_click"></span>
+ </label>
+ </div>
</td>
</tr>
</table>
@@ -62,10 +64,12 @@
<table class="option-control-table">
<tr>
<td class="option-name">
- <label class="checkbox">
- <input id="accesibility-check" type="checkbox">
- <span i18n-content="accessibility"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="accesibility-check" type="checkbox">
+ <span i18n-content="accessibility"></span>
+ </label>
+ </div>
</td>
</tr>
</table>
« no previous file with comments | « chrome/browser/resources/options/chromeos_proxy.html ('k') | chrome/browser/resources/options/clear_browser_data_overlay.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698