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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="detailsInternetPage"> 1 <div class="page hidden" id="detailsInternetPage">
2 <h1 id="inetTitle"></h1> 2 <h1 id="inetTitle"></h1>
3 <!-- Navigation tabs --> 3 <!-- Navigation tabs -->
4 <div class="subpages-nav-tabs" id="details-tab-strip"> 4 <div class="subpages-nav-tabs" id="details-tab-strip">
5 <span id="wifiNetworkNavTab" class="tab wifi-details" 5 <span id="wifiNetworkNavTab" class="tab wifi-details"
6 tab-contents="wifiNetworkTab"> 6 tab-contents="wifiNetworkTab">
7 <span class="tab-label" 7 <span class="tab-label"
8 i18n-content="wifiNetworkTabLabel"></span> 8 i18n-content="wifiNetworkTabLabel"></span>
9 <span class="active-tab-label" i18n-content="wifiNetworkTabLabel"></span> 9 <span class="active-tab-label" i18n-content="wifiNetworkTabLabel"></span>
10 </span> 10 </span>
(...skipping 23 matching lines...) Expand all
34 </div> 34 </div>
35 <div id="wifiNetworkTab" class="subpages-tab-contents wifi-details"> 35 <div id="wifiNetworkTab" class="subpages-tab-contents wifi-details">
36 <section> 36 <section>
37 <table class="option-control-table"> 37 <table class="option-control-table">
38 <tr> 38 <tr>
39 <td class="option-name" i18n-content="inetSsid"></td> 39 <td class="option-name" i18n-content="inetSsid"></td>
40 <td id="inetSsid" class="option-value"></td> 40 <td id="inetSsid" class="option-value"></td>
41 </tr> 41 </tr>
42 <tr> 42 <tr>
43 <td colspan="2"> 43 <td colspan="2">
44 <label class="checkbox"> 44 <div class="checkbox">
45 <input id="autoConnectNetwork" type="checkbox"> 45 <label>
46 <span i18n-content="inetAutoConnectNetwork"></span> 46 <input id="autoConnectNetwork" type="checkbox">
47 </label> 47 <span i18n-content="inetAutoConnectNetwork"></span>
48 </label>
49 </div>
48 </td> 50 </td>
49 </tr> 51 </tr>
50 </table> 52 </table>
51 </section> 53 </section>
52 <section class="cert-details"> 54 <section class="cert-details">
53 <table class="option-control-table"> 55 <table class="option-control-table">
54 <tr> 56 <tr>
55 <td class="option-name" i18n-content="inetIdent"></td> 57 <td class="option-name" i18n-content="inetIdent"></td>
56 <td class="option-value"><input id="inetIdent"></td> 58 <td class="option-value"><input id="inetIdent"></td>
57 </tr> 59 </tr>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 <td i18n-content="planLoading" class="option-value"></td> 95 <td i18n-content="planLoading" class="option-value"></td>
94 </tr> 96 </tr>
95 <tr class="no-plan-info"> 97 <tr class="no-plan-info">
96 <td i18n-content="noPlansFound" class="option-value"></td> 98 <td i18n-content="noPlansFound" class="option-value"></td>
97 </tr> 99 </tr>
98 </table> 100 </table>
99 </div> 101 </div>
100 <div id="planList"></div> 102 <div id="planList"></div>
101 </section> 103 </section>
102 <section class="plan-details-info"> 104 <section class="plan-details-info">
103 <div> 105 <div class="checkbox">
104 <label class="checkbox"> 106 <label>
105 <input id="showPlanNotifications" type="checkbox" 107 <input id="showPlanNotifications" type="checkbox"
106 pref="settings.internet.mobile.show_plan_notifications"> 108 pref="settings.internet.mobile.show_plan_notifications">
107 <span i18n-content="showPlanNotifications"></span> 109 <span i18n-content="showPlanNotifications"></span>
108 </label> 110 </label>
109 </div> 111 </div>
110 </section> 112 </section>
111 </div> 113 </div>
112 <div id="cellularConnTab" class="subpages-tab-contents cellular-details"> 114 <div id="cellularConnTab" class="subpages-tab-contents cellular-details">
113 <section id="cellularNetworkOptions"> 115 <section id="cellularNetworkOptions">
114 <table class="option-control-table"> 116 <table class="option-control-table">
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 <button id="detailsInternetDismiss" 237 <button id="detailsInternetDismiss"
236 i18n-content="detailsInternetDismiss"></button> 238 i18n-content="detailsInternetDismiss"></button>
237 <button id="detailsInternetLogin" 239 <button id="detailsInternetLogin"
238 i18n-content="connect_button"></button> 240 i18n-content="connect_button"></button>
239 <button id="activateDetails" 241 <button id="activateDetails"
240 i18n-content="activate_button"></button> 242 i18n-content="activate_button"></button>
241 <button id="buyplanDetails" 243 <button id="buyplanDetails"
242 i18n-content="buyplan_button"></button> 244 i18n-content="buyplan_button"></button>
243 </div> 245 </div>
244 </div> 246 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698