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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="accountsPage"> 1 <div class="page hidden" id="accountsPage">
2 <h1 i18n-content="accountsPage"></h1> 2 <h1 i18n-content="accountsPage"></h1>
3 <section> 3 <section>
4 <div class="option"> 4 <div class="option">
5 <div id="ownerOnlyWarning" class="hidden"> 5 <div id="ownerOnlyWarning" class="hidden">
6 <span i18n-content="owner_only"></span> 6 <span i18n-content="owner_only"></span>
7 <span i18n-content="owner_user_id"></span> 7 <span i18n-content="owner_user_id"></span>
8 </div> 8 </div>
9 <table class="option-control-table"> 9 <table class="option-control-table">
10 <tr> 10 <tr>
11 <td class="option-name"> 11 <td class="option-name">
12 <label class="checkbox"> 12 <div class="checkbox">
13 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI" 13 <label>
14 type="checkbox"> 14 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
15 <span i18n-content="allow_BWSI"></span> 15 type="checkbox">
16 </label> 16 <span i18n-content="allow_BWSI"></span>
17 </label>
18 </div>
17 </td> 19 </td>
18 </tr> 20 </tr>
19 <tr> 21 <tr>
20 <td class="option-name"> 22 <td class="option-name">
21 <label class="checkbox"> 23 <div class="checkbox">
22 <input id="showUserNamesCheck" 24 <label>
23 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"> 25 <input id="showUserNamesCheck"
24 <span i18n-content="show_user_on_signin"></span> 26 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
25 </label> 27 <span i18n-content="show_user_on_signin"></span>
28 </label>
29 </div>
26 </td> 30 </td>
27 </tr> 31 </tr>
28 <tr> 32 <tr>
29 <td class="option-name"> 33 <td class="option-name">
30 <label class="checkbox"> 34 <div class="checkbox">
31 <input id="useWhitelistCheck" pref="cros.accounts.allowGuest" 35 <label>
32 type="checkbox" inverted_pref> 36 <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
33 <span i18n-content="use_whitelist"></span> 37 type="checkbox" inverted_pref>
34 </label> 38 <span i18n-content="use_whitelist"></span>
39 </label>
40 </div>
35 </td> 41 </td>
36 </tr> 42 </tr>
37 <tr><td>&nbsp;</td></tr> 43 <tr><td>&nbsp;</td></tr>
38 <tr><td> 44 <tr><td>
39 <table class="user-list-table"> 45 <table class="user-list-table">
40 <tr><td> 46 <tr><td>
41 <list id="userList"></list> 47 <list id="userList"></list>
42 </td></tr> 48 </td></tr>
43 <tr><td class="user-name-edit-row"> 49 <tr><td class="user-name-edit-row">
44 <label><span i18n-content="add_users"></span><br> 50 <label><span i18n-content="add_users"></span><br>
45 <input id="userNameEdit" type="text" 51 <input id="userNameEdit" type="text"
46 i18n-values="placeholder:username_edit_hint"> 52 i18n-values="placeholder:username_edit_hint">
47 </span> 53 </span>
48 </label> 54 </label>
49 </td></tr> 55 </td></tr>
50 </table> 56 </table>
51 </td></tr> 57 </td></tr>
52 </table> 58 </table>
53 </div> 59 </div>
54 </section> 60 </section>
55 </div> 61 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698