| OLD | NEW |
| 1 <div id="manage-profile-overlay" class="page" hidden> | 1 <div id="manage-profile-overlay" class="page" hidden> |
| 2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
| 3 <!-- Dialog for managing profiles. --> | 3 <!-- Dialog for managing profiles. --> |
| 4 <div id="manage-profile-overlay-manage" hidden> | 4 <div id="manage-profile-overlay-manage" hidden> |
| 5 <h1 i18n-content="manageProfile"></h1> | 5 <h1 i18n-content="manageProfile"></h1> |
| 6 <div id="manage-profile-content" class="content-area"> | 6 <div id="manage-profile-content" class="content-area"> |
| 7 <div id="manage-profile-icon-label" | 7 <div id="manage-profile-icon-label" |
| 8 i18n-content="manageProfilesIconLabel"> | 8 i18n-content="manageProfilesIconLabel"> |
| 9 </div> | 9 </div> |
| 10 <grid id="manage-profile-icon-grid"></grid> | 10 <grid id="manage-profile-icon-grid"></grid> |
| 11 <div id="manage-profile-name-input-container"> | 11 <div id="manage-profile-name-input-container"> |
| 12 <label> | 12 <label> |
| 13 <span id="manage-profile-name-label" for="manage-profile-name" | 13 <span i18n-content="manageProfilesNameLabel"></span> |
| 14 i18n-content="manageProfilesNameLabel"> | |
| 15 </span> | |
| 16 <input id="manage-profile-name" type="text" pattern=".*\S.*" required> | 14 <input id="manage-profile-name" type="text" pattern=".*\S.*" required> |
| 17 </label> | 15 </label> |
| 18 </div> | 16 </div> |
| 19 <div id="manage-profile-error-bubble" hidden></div> | 17 <div id="manage-profile-error-bubble" hidden></div> |
| 20 </div> | 18 </div> |
| 21 <div class="action-area"> | 19 <div class="action-area"> |
| 22 <div class="action-area-shortcut-container"> | 20 <div class="action-area-shortcut-container"> |
| 23 <button id="remove-shortcut-button" | 21 <button id="remove-shortcut-button" |
| 24 i18n-content="removeProfileShortcutButton" hidden> | 22 i18n-content="removeProfileShortcutButton" hidden> |
| 25 </button> | 23 </button> |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 </div> | 74 </div> |
| 77 </div> | 75 </div> |
| 78 <!-- Dialog for creating profiles. --> | 76 <!-- Dialog for creating profiles. --> |
| 79 <div id="manage-profile-overlay-create" hidden> | 77 <div id="manage-profile-overlay-create" hidden> |
| 80 <h1 i18n-content="createProfileTitle"></h1> | 78 <h1 i18n-content="createProfileTitle"></h1> |
| 81 <div id="create-profile-content" class="content-area"> | 79 <div id="create-profile-content" class="content-area"> |
| 82 <div id="create-profile-instructions"></div> | 80 <div id="create-profile-instructions"></div> |
| 83 <grid id="create-profile-icon-grid"></grid> | 81 <grid id="create-profile-icon-grid"></grid> |
| 84 <div id="create-profile-name-input-container"> | 82 <div id="create-profile-name-input-container"> |
| 85 <label> | 83 <label> |
| 86 <span id="create-profile-name-label" for="create-profile-name" | 84 <span id="create-profile-name-label" |
| 87 i18n-content="manageProfilesNameLabel"> | 85 i18n-content="manageProfilesNameLabel"> |
| 88 </span> | 86 </span> |
| 89 <input id="create-profile-name" type="text" required> | 87 <input id="create-profile-name" type="text" required> |
| 90 </label> | 88 </label> |
| 91 </div> | 89 </div> |
| 92 </div> | 90 </div> |
| 93 <div id="create-profile-supervised-content-area" class="content-area"> | 91 <div id="create-profile-supervised-content-area" class="content-area"> |
| 94 <div id="create-shortcut-container" class="checkbox" hidden> | 92 <div id="create-shortcut-container" class="checkbox" hidden> |
| 95 <label> | 93 <label> |
| 96 <input id="create-shortcut" type="checkbox"> | 94 <input id="create-shortcut" type="checkbox"> |
| 97 <span for="create-shortcut" | 95 <span i18n-content="createProfileShortcutCheckbox"></span> |
| 98 i18n-content="createProfileShortcutCheckbox"> | |
| 99 </span> | |
| 100 </label> | 96 </label> |
| 101 </div> | 97 </div> |
| 102 <div id="create-profile-supervised-container" class="checkbox"> | 98 <div id="create-profile-supervised-container" class="checkbox"> |
| 103 <label> | 99 <label> |
| 104 <input id="create-profile-supervised" type="checkbox"> | 100 <input id="create-profile-supervised" type="checkbox"> |
| 105 <span id="create-profile-supervised-signed-in"> | 101 <span id="create-profile-supervised-signed-in"> |
| 106 <span id="create-profile-supervised-signed-in-label"></span> | 102 <span id="create-profile-supervised-signed-in-label"></span> |
| 107 <span id="create-profile-supervised-account-details-out-of-date-labe
l" | 103 <span id="create-profile-supervised-account-details-out-of-date-labe
l" |
| 108 hidden> | 104 hidden> |
| 109 </span> | 105 </span> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 133 </button> | 129 </button> |
| 134 <div class="button-strip"> | 130 <div class="button-strip"> |
| 135 <button id="create-profile-cancel" i18n-content="cancel"></button> | 131 <button id="create-profile-cancel" i18n-content="cancel"></button> |
| 136 <button id="create-profile-ok" i18n-content="createProfileConfirm" | 132 <button id="create-profile-ok" i18n-content="createProfileConfirm" |
| 137 class="default-button"> | 133 class="default-button"> |
| 138 </button> | 134 </button> |
| 139 </div> | 135 </div> |
| 140 </div> | 136 </div> |
| 141 </div> | 137 </div> |
| 142 </div> | 138 </div> |
| OLD | NEW |