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-div"> | 11 <div id="manage-profile-name-div"> |
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 <input id="manage-profile-name" type="text" required> | 14 <input id="manage-profile-name" type="text" required> |
15 </div> | 15 </div> |
16 <div id="manage-profile-error-bubble" hidden> | 16 <div id="manage-profile-error-bubble" hidden> |
17 </div> | 17 </div> |
18 </div> | 18 </div> |
19 <div class="action-area"> | 19 <div class="action-area"> |
| 20 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for |
| 21 shortcut creation in M23 |
20 <div class="action-area-checkbox-container"> | 22 <div class="action-area-checkbox-container"> |
21 <div class="checkbox"> | 23 <div class="checkbox"> |
22 <label> | 24 <label> |
23 <input id="manage-shortcut" type="checkbox"> | 25 <input id="manage-shortcut" type="checkbox"> |
24 <span for="manage-shortcut" | 26 <span for="manage-shortcut" |
25 i18n-content="createProfileShortcut"> | 27 i18n-content="createProfileShortcut"> |
26 </span> | 28 </span> |
27 </label> | 29 </label> |
28 </div> | 30 </div> |
29 </div> | 31 </div> |
| 32 --> |
30 <div class="button-strip"> | 33 <div class="button-strip"> |
31 <button id="manage-profile-cancel" i18n-content="cancel"></button> | 34 <button id="manage-profile-cancel" i18n-content="cancel"></button> |
32 <button id="manage-profile-ok" i18n-content="ok"></button> | 35 <button id="manage-profile-ok" i18n-content="ok"></button> |
33 </div> | 36 </div> |
34 </div> | 37 </div> |
35 </div> | 38 </div> |
36 <!-- Dialog for deleting profiles. --> | 39 <!-- Dialog for deleting profiles. --> |
37 <div id="manage-profile-overlay-delete" hidden> | 40 <div id="manage-profile-overlay-delete" hidden> |
38 <h1 i18n-content="deleteProfileTitle"></h1> | 41 <h1 i18n-content="deleteProfileTitle"></h1> |
39 <div class="content-area"> | 42 <div class="content-area"> |
(...skipping 15 matching lines...) Expand all Loading... |
55 <grid id="create-profile-icon-grid"></grid> | 58 <grid id="create-profile-icon-grid"></grid> |
56 <div id="create-profile-name-div"> | 59 <div id="create-profile-name-div"> |
57 <span id="create-profile-name-label" | 60 <span id="create-profile-name-label" |
58 i18n-content="manageProfilesNameLabel"> | 61 i18n-content="manageProfilesNameLabel"> |
59 </span> | 62 </span> |
60 <input id="create-profile-name" type="text" required> | 63 <input id="create-profile-name" type="text" required> |
61 </div> | 64 </div> |
62 <div id="create-profile-error-bubble" hidden></div> | 65 <div id="create-profile-error-bubble" hidden></div> |
63 </div> | 66 </div> |
64 <div class="action-area"> | 67 <div class="action-area"> |
| 68 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for |
| 69 shortcut creation in M23 |
65 <div class="action-area-checkbox-container"> | 70 <div class="action-area-checkbox-container"> |
66 <div class="checkbox"> | 71 <div class="checkbox"> |
67 <label> | 72 <label> |
68 <input id="create-shortcut" type="checkbox"> | 73 <input id="create-shortcut" type="checkbox"> |
69 <span for="create-shortcut" | 74 <span for="create-shortcut" |
70 i18n-content="createProfileShortcut"> | 75 i18n-content="createProfileShortcut"> |
71 </span> | 76 </span> |
72 </label> | 77 </label> |
73 </div> | 78 </div> |
74 </div> | 79 </div> |
| 80 --> |
75 <div class="button-strip"> | 81 <div class="button-strip"> |
76 <button id="create-profile-cancel" i18n-content="cancel"></button> | 82 <button id="create-profile-cancel" i18n-content="cancel"></button> |
77 <button id="create-profile-ok" i18n-content="createProfileConfirm"> | 83 <button id="create-profile-ok" i18n-content="createProfileConfirm"> |
78 </button> | 84 </button> |
79 </div> | 85 </div> |
80 </div> | 86 </div> |
81 </div> | 87 </div> |
82 </div> | 88 </div> |
OLD | NEW |