OLD | NEW |
(Empty) | |
| 1 <div id="manage-profile-overlay" class="page" hidden> |
| 2 <!-- Dialog for managing profiles. --> |
| 3 <div id="manage-profile-overlay-manage" hidden> |
| 4 <h1 i18n-content="manageProfilesTitle"></h1> |
| 5 <div id="manage-profile-content" class="content-area"> |
| 6 <div id="manage-profile-name-div"> |
| 7 <span id="manage-profile-name-label" |
| 8 i18n-content="manageProfilesNameLabel"></span> |
| 9 <input id="manage-profile-name" type="text"> |
| 10 </div> |
| 11 <div id="manage-profile-duplicate-name-error" |
| 12 class="hiding" i18n-content="manageProfilesDuplicateNameError"> |
| 13 </div> |
| 14 <div id="manage-profile-icon-label" |
| 15 i18n-content="manageProfilesIconLabel"></div> |
| 16 <grid id="manage-profile-icon-grid"></grid> |
| 17 </div> |
| 18 <div class="action-area"> |
| 19 <div class="button-strip"> |
| 20 <button id="manage-profile-ok" i18n-content="ok"></button> |
| 21 <button id="manage-profile-cancel" i18n-content="cancel"></button> |
| 22 </div> |
| 23 </div> |
| 24 </div> |
| 25 <!-- Dialog for deleting profiles. --> |
| 26 <div id="manage-profile-overlay-delete" hidden> |
| 27 <h1 i18n-content="deleteProfileTitle"></h1> |
| 28 <div class="content-area"> |
| 29 <div id="delete-profile-message"></div> |
| 30 </div> |
| 31 <div class="action-area"> |
| 32 <div class="button-strip"> |
| 33 <button id="delete-profile-ok" |
| 34 i18n-content="deleteProfileOK"></button> |
| 35 <button id="delete-profile-cancel" i18n-content="cancel"></button> |
| 36 </div> |
| 37 </div> |
| 38 </div> |
| 39 </div> |
OLD | NEW |