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

Unified Diff: chrome/browser/resources/options/chromeos_internet_detail.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_internet_detail.html
diff --git a/chrome/browser/resources/options/chromeos_internet_detail.html b/chrome/browser/resources/options/chromeos_internet_detail.html
index 463a8707a338814cc6b9f00dafb1c49bbde26e14..d31c806eb420509c94e55c900fbc36034a301da0 100644
--- a/chrome/browser/resources/options/chromeos_internet_detail.html
+++ b/chrome/browser/resources/options/chromeos_internet_detail.html
@@ -41,10 +41,12 @@
</tr>
<tr>
<td colspan="2">
- <label class="checkbox">
- <input id="autoConnectNetwork" type="checkbox">
- <span i18n-content="inetAutoConnectNetwork"></span>
- </label>
+ <div class="checkbox">
+ <label>
+ <input id="autoConnectNetwork" type="checkbox">
+ <span i18n-content="inetAutoConnectNetwork"></span>
+ </label>
+ </div>
</td>
</tr>
</table>
@@ -100,8 +102,8 @@
<div id="planList"></div>
</section>
<section class="plan-details-info">
- <div>
- <label class="checkbox">
+ <div class="checkbox">
+ <label>
<input id="showPlanNotifications" type="checkbox"
pref="settings.internet.mobile.show_plan_notifications">
<span i18n-content="showPlanNotifications"></span>

Powered by Google App Engine
This is Rietveld 408576698