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

Side by Side Diff: chrome/browser/resources/options/chromeos/accounts_options.html

Issue 7088010: Layout adjustment for i18n compatibility. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 6 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 id="accountsPage" class="page" hidden> 1 <div id="accountsPage" class="page" hidden>
2 <h1 i18n-content="accountsPage"></h1> 2 <h1 i18n-content="accountsPage"></h1>
3 <section> 3 <div class="displaytable" id="userOptionsTable">
kevers 2011/06/02 19:03:36 Added <div> to make use of 'display:table' for i18
Rick Byers 2011/06/03 15:06:07 Remote extra space before id
kevers1 2011/06/03 18:45:44 id no longer necessary.
4 <div class="option"> 4 <section>
5 <div id="ownerOnlyWarning" hidden> 5 <div class="option">
6 <span i18n-content="owner_only"></span> 6 <div id="ownerOnlyWarning" hidden>
7 <span i18n-content="owner_user_id"></span> 7 <span i18n-content="owner_only"></span>
8 <span i18n-content="owner_user_id"></span>
9 </div>
10 <table class="option-control-table">
11 <tr>
12 <td class="option-name">
13 <div class="checkbox">
14 <label>
15 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
16 type="checkbox">
17 <span i18n-content="allow_BWSI"></span>
18 </label>
19 </div>
20 </td>
21 </tr>
22 <tr>
23 <td class="option-name">
24 <div class="checkbox">
25 <label>
26 <input id="showUserNamesCheck"
27 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
28 <span i18n-content="show_user_on_signin"></span>
29 </label>
30 </div>
31 </td>
32 </tr>
33 <tr>
34 <td class="option-name">
35 <div class="checkbox">
36 <label>
37 <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
38 type="checkbox" inverted_pref>
39 <span i18n-content="use_whitelist"></span>
40 </label>
41 </div>
42 </td>
43 </tr>
44 <tr><td>&nbsp;</td></tr>
45 <tr><td>
46 <table class="user-list-table">
47 <tr><td>
48 <list id="userList"></list>
49 </td></tr>
50 <tr><td class="user-name-edit-row">
51 <label><span i18n-content="add_users"></span><br>
52 <input id="userNameEdit" type="text"
53 i18n-values="placeholder:username_edit_hint">
54 </span>
55 </label>
56 </td></tr>
57 </table>
58 </td></tr>
59 </table>
8 </div> 60 </div>
9 <table class="option-control-table"> 61 </section>
10 <tr> 62 </div>
11 <td class="option-name">
12 <div class="checkbox">
13 <label>
14 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
15 type="checkbox">
16 <span i18n-content="allow_BWSI"></span>
17 </label>
18 </div>
19 </td>
20 </tr>
21 <tr>
22 <td class="option-name">
23 <div class="checkbox">
24 <label>
25 <input id="showUserNamesCheck"
26 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
27 <span i18n-content="show_user_on_signin"></span>
28 </label>
29 </div>
30 </td>
31 </tr>
32 <tr>
33 <td class="option-name">
34 <div class="checkbox">
35 <label>
36 <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
37 type="checkbox" inverted_pref>
38 <span i18n-content="use_whitelist"></span>
39 </label>
40 </div>
41 </td>
42 </tr>
43 <tr><td>&nbsp;</td></tr>
44 <tr><td>
45 <table class="user-list-table">
46 <tr><td>
47 <list id="userList"></list>
48 </td></tr>
49 <tr><td class="user-name-edit-row">
50 <label><span i18n-content="add_users"></span><br>
51 <input id="userNameEdit" type="text"
52 i18n-values="placeholder:username_edit_hint">
53 </span>
54 </label>
55 </td></tr>
56 </table>
57 </td></tr>
58 </table>
59 </div>
60 </section>
61 </div> 63 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698