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

Unified 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: Cleanup rule redundancy. 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 side-by-side diff with in-line comments
Download patch
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..b324c4fd933343b8086df761f8d4aad00417443e 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">
+ <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>&nbsp;</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>&nbsp;</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>

Powered by Google App Engine
This is Rietveld 408576698