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 class="profile-name-container"> | 11 <div id="manage-profile-name-label-container"> |
12 <span id="manage-profile-name-label" | 12 <span id="manage-profile-name-label" |
13 i18n-content="manageProfilesNameLabel"></span> | 13 i18n-content="manageProfilesNameLabel"></span> |
14 </div> | 14 </div> |
15 <div class="profile-name-container"> | 15 <div id="manage-profile-name-input-container"> |
16 <input id="manage-profile-name" type="text" required> | 16 <input id="manage-profile-name" type="text" required> |
17 </div> | 17 </div> |
18 <div id="manage-profile-error-bubble" hidden> | 18 <div id="manage-profile-error-bubble" hidden> |
19 </div> | 19 </div> |
20 </div> | 20 </div> |
21 <div class="action-area"> | 21 <div class="action-area"> |
22 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for | 22 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for |
23 shortcut creation in M23 | 23 shortcut creation in M23 |
24 <div class="action-area-checkbox-container"> | 24 <div class="action-area-checkbox-container"> |
25 <div class="checkbox"> | 25 <div class="checkbox"> |
(...skipping 25 matching lines...) Expand all Loading... |
51 i18n-content="deleteProfileOK"></button> | 51 i18n-content="deleteProfileOK"></button> |
52 </div> | 52 </div> |
53 </div> | 53 </div> |
54 </div> | 54 </div> |
55 <!-- Dialog for creating profiles. --> | 55 <!-- Dialog for creating profiles. --> |
56 <div id="manage-profile-overlay-create" hidden> | 56 <div id="manage-profile-overlay-create" hidden> |
57 <h1 i18n-content="createProfileTitle"></h1> | 57 <h1 i18n-content="createProfileTitle"></h1> |
58 <div id="create-profile-content" class="content-area"> | 58 <div id="create-profile-content" class="content-area"> |
59 <div id="create-profile-instructions"></div> | 59 <div id="create-profile-instructions"></div> |
60 <grid id="create-profile-icon-grid"></grid> | 60 <grid id="create-profile-icon-grid"></grid> |
61 <div class="profile-name-container"> | 61 <div id="create-profile-name-label-container"> |
62 <span id="create-profile-name-label" | 62 <span id="create-profile-name-label" |
63 i18n-content="manageProfilesNameLabel"> | 63 i18n-content="manageProfilesNameLabel"> |
64 </span> | 64 </span> |
65 </div> | 65 </div> |
66 <div class="profile-name-container"> | 66 <div id="create-profile-name-input-container"> |
67 <input id="create-profile-name" type="text" required> | 67 <input id="create-profile-name" type="text" required> |
68 </div> | 68 </div> |
69 <div id="create-profile-error-bubble" hidden></div> | 69 <div id="create-profile-error-bubble" hidden></div> |
70 </div> | 70 </div> |
71 <div class="action-area"> | 71 <div class="action-area"> |
72 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for | 72 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for |
73 shortcut creation in M23 | 73 shortcut creation in M23 |
74 <div class="action-area-checkbox-container"> | 74 <div class="action-area-checkbox-container"> |
75 <div class="checkbox"> | 75 <div class="checkbox"> |
76 <label> | 76 <label> |
77 <input id="create-shortcut" type="checkbox"> | 77 <input id="create-shortcut" type="checkbox"> |
78 <span for="create-shortcut" | 78 <span for="create-shortcut" |
79 i18n-content="createProfileShortcut"> | 79 i18n-content="createProfileShortcut"> |
80 </span> | 80 </span> |
81 </label> | 81 </label> |
82 </div> | 82 </div> |
83 </div> | 83 </div> |
84 --> | 84 --> |
85 <div class="button-strip"> | 85 <div class="button-strip"> |
86 <button id="create-profile-cancel" i18n-content="cancel"></button> | 86 <button id="create-profile-cancel" i18n-content="cancel"></button> |
87 <button id="create-profile-ok" i18n-content="createProfileConfirm"> | 87 <button id="create-profile-ok" i18n-content="createProfileConfirm"> |
88 </button> | 88 </button> |
89 </div> | 89 </div> |
90 </div> | 90 </div> |
91 </div> | 91 </div> |
92 </div> | 92 </div> |
OLD | NEW |