Chromium Code Reviews| Index: chrome/browser/resources/options/chromeos/accounts_options.html |
| diff --git a/chrome/browser/resources/options/chromeos/accounts_options.html b/chrome/browser/resources/options/chromeos/accounts_options.html |
| index d780754e97b53fbe755230a89973c6cdfc40ec6e..5bbec9cebb136cc5f8335683a949564034678d23 100644 |
| --- a/chrome/browser/resources/options/chromeos/accounts_options.html |
| +++ b/chrome/browser/resources/options/chromeos/accounts_options.html |
| @@ -1,61 +1,63 @@ |
| <div id="accountsPage" class="page" hidden> |
| <h1 i18n-content="accountsPage"></h1> |
| - <section> |
| - <div class="option"> |
| - <div id="ownerOnlyWarning" hidden> |
| - <span i18n-content="owner_only"></span> |
| - <span i18n-content="owner_user_id"></span> |
| + <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.
|
| + <section> |
| + <div class="option"> |
| + <div id="ownerOnlyWarning" hidden> |
| + <span i18n-content="owner_only"></span> |
| + <span i18n-content="owner_user_id"></span> |
| + </div> |
| + <table class="option-control-table"> |
| + <tr> |
| + <td class="option-name"> |
| + <div class="checkbox"> |
| + <label> |
| + <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI" |
| + type="checkbox"> |
| + <span i18n-content="allow_BWSI"></span> |
| + </label> |
| + </div> |
| + </td> |
| + </tr> |
| + <tr> |
| + <td class="option-name"> |
| + <div class="checkbox"> |
| + <label> |
| + <input id="showUserNamesCheck" |
| + pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"> |
| + <span i18n-content="show_user_on_signin"></span> |
| + </label> |
| + </div> |
| + </td> |
| + </tr> |
| + <tr> |
| + <td class="option-name"> |
| + <div class="checkbox"> |
| + <label> |
| + <input id="useWhitelistCheck" pref="cros.accounts.allowGuest" |
| + type="checkbox" inverted_pref> |
| + <span i18n-content="use_whitelist"></span> |
| + </label> |
| + </div> |
| + </td> |
| + </tr> |
| + <tr><td> </td></tr> |
| + <tr><td> |
| + <table class="user-list-table"> |
| + <tr><td> |
| + <list id="userList"></list> |
| + </td></tr> |
| + <tr><td class="user-name-edit-row"> |
| + <label><span i18n-content="add_users"></span><br> |
| + <input id="userNameEdit" type="text" |
| + i18n-values="placeholder:username_edit_hint"> |
| + </span> |
| + </label> |
| + </td></tr> |
| + </table> |
| + </td></tr> |
| + </table> |
| </div> |
| - <table class="option-control-table"> |
| - <tr> |
| - <td class="option-name"> |
| - <div class="checkbox"> |
| - <label> |
| - <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI" |
| - type="checkbox"> |
| - <span i18n-content="allow_BWSI"></span> |
| - </label> |
| - </div> |
| - </td> |
| - </tr> |
| - <tr> |
| - <td class="option-name"> |
| - <div class="checkbox"> |
| - <label> |
| - <input id="showUserNamesCheck" |
| - pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"> |
| - <span i18n-content="show_user_on_signin"></span> |
| - </label> |
| - </div> |
| - </td> |
| - </tr> |
| - <tr> |
| - <td class="option-name"> |
| - <div class="checkbox"> |
| - <label> |
| - <input id="useWhitelistCheck" pref="cros.accounts.allowGuest" |
| - type="checkbox" inverted_pref> |
| - <span i18n-content="use_whitelist"></span> |
| - </label> |
| - </div> |
| - </td> |
| - </tr> |
| - <tr><td> </td></tr> |
| - <tr><td> |
| - <table class="user-list-table"> |
| - <tr><td> |
| - <list id="userList"></list> |
| - </td></tr> |
| - <tr><td class="user-name-edit-row"> |
| - <label><span i18n-content="add_users"></span><br> |
| - <input id="userNameEdit" type="text" |
| - i18n-values="placeholder:username_edit_hint"> |
| - </span> |
| - </label> |
| - </td></tr> |
| - </table> |
| - </td></tr> |
| - </table> |
| - </div> |
| - </section> |
| + </section> |
| + </div> |
| </div> |