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 id="manage-profile-name-label" for="manage-profile-name" |
14 i18n-content="manageProfilesNameLabel"> | 14 i18n-content="manageProfilesNameLabel"> |
15 </span> | 15 </span> |
16 <input id="manage-profile-name" type="text" required> | 16 <input id="manage-profile-name" type="text" pattern=".*\S.*" required> |
17 </label> | 17 </label> |
18 </div> | 18 </div> |
19 <div id="manage-profile-error-bubble" hidden></div> | 19 <div id="manage-profile-error-bubble" hidden></div> |
20 </div> | 20 </div> |
21 <div class="action-area"> | 21 <div class="action-area"> |
22 <div class="action-area-shortcut-container"> | 22 <div class="action-area-shortcut-container"> |
23 <button id="remove-shortcut-button" | 23 <button id="remove-shortcut-button" |
24 i18n-content="removeProfileShortcutButton" hidden> | 24 i18n-content="removeProfileShortcutButton" hidden> |
25 </button> | 25 </button> |
26 <button id="add-shortcut-button" | 26 <button id="add-shortcut-button" |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 </button> | 133 </button> |
134 <div class="button-strip"> | 134 <div class="button-strip"> |
135 <button id="create-profile-cancel" i18n-content="cancel"></button> | 135 <button id="create-profile-cancel" i18n-content="cancel"></button> |
136 <button id="create-profile-ok" i18n-content="createProfileConfirm" | 136 <button id="create-profile-ok" i18n-content="createProfileConfirm" |
137 class="default-button"> | 137 class="default-button"> |
138 </button> | 138 </button> |
139 </div> | 139 </div> |
140 </div> | 140 </div> |
141 </div> | 141 </div> |
142 </div> | 142 </div> |
OLD | NEW |