Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: chrome/browser/resources/options/manage_profile_overlay.html

Issue 11633041: Show a delete shortcut checkbox when editing a profile that has a shortcut. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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-label-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 id="manage-profile-name-input-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 <div class="action-area-settings-container"> 22 <div class="action-area-settings-container">
23 <button id="managed-user-settings-button" 23 <button id="managed-user-settings-button"
24 i18n-content="manageProfilesManagedUserSettings"> 24 i18n-content="manageProfilesManagedUserSettings">
25 </div> 25 </div>
26 <if expr="is_win"> 26 <div class="action-area-checkbox-container">
27 <div class="action-area-checkbox-container"> 27 <div id="manage-shortcut-container" class="checkbox" hidden>
28 <div class="checkbox"> 28 <label>
29 <label> 29 <input id="manage-shortcut" type="checkbox">
30 <input id="manage-shortcut" type="checkbox"> 30 <span for="manage-shortcut" i18n-content="createProfileShortcut">
31 <span for="manage-shortcut" 31 </span>
32 i18n-content="createProfileShortcut"> 32 </label>
33 </span>
34 </label>
35 </div>
36 </div> 33 </div>
37 </if> 34 <div id="remove-shortcut-container" class="checkbox" hidden>
35 <label>
36 <input id="remove-shortcut" type="checkbox">
37 <span for="remove-shortcut" i18n-content="removeProfileShortcut">
38 </span>
39 </label>
40 </div>
41 </div>
38 <div class="button-strip"> 42 <div class="button-strip">
39 <button id="manage-profile-cancel" i18n-content="cancel"></button> 43 <button id="manage-profile-cancel" i18n-content="cancel"></button>
40 <button id="manage-profile-ok" i18n-content="ok"></button> 44 <button id="manage-profile-ok" i18n-content="ok"></button>
41 </div> 45 </div>
42 </div> 46 </div>
43 </div> 47 </div>
44 <!-- Dialog for deleting profiles. --> 48 <!-- Dialog for deleting profiles. -->
45 <div id="manage-profile-overlay-delete" hidden> 49 <div id="manage-profile-overlay-delete" hidden>
46 <h1 i18n-content="deleteProfileTitle"></h1> 50 <h1 i18n-content="deleteProfileTitle"></h1>
47 <div class="content-area"> 51 <div class="content-area">
(...skipping 24 matching lines...) Expand all
72 <div id="create-profile-error-bubble" hidden></div> 76 <div id="create-profile-error-bubble" hidden></div>
73 </div> 77 </div>
74 <div class="action-area"> 78 <div class="action-area">
75 <div class="action-area-checkbox-container"> 79 <div class="action-area-checkbox-container">
76 <div id="create-profile-managed-container" class="checkbox" hidden> 80 <div id="create-profile-managed-container" class="checkbox" hidden>
77 <label> 81 <label>
78 <input id="create-profile-managed" type="checkbox"> 82 <input id="create-profile-managed" type="checkbox">
79 <span i18n-content="manageProfilesManagedLabel"></span> 83 <span i18n-content="manageProfilesManagedLabel"></span>
80 </label> 84 </label>
81 </div> 85 </div>
82 <if expr="is_win"> 86 <div id="create-shortcut-container" class="checkbox" hidden>
83 <div class="checkbox"> 87 <label>
84 <label> 88 <input id="create-shortcut" type="checkbox">
85 <input id="create-shortcut" type="checkbox"> 89 <span for="create-shortcut" i18n-content="createProfileShortcut">
86 <span for="create-shortcut" 90 </span>
87 i18n-content="createProfileShortcut"> 91 </label>
88 </span> 92 </div>
89 </label>
90 </div>
91 </if>
92 </div> 93 </div>
93 <div class="button-strip"> 94 <div class="button-strip">
94 <button id="create-profile-cancel" i18n-content="cancel"></button> 95 <button id="create-profile-cancel" i18n-content="cancel"></button>
95 <button id="create-profile-ok" i18n-content="createProfileConfirm"> 96 <button id="create-profile-ok" i18n-content="createProfileConfirm">
96 </button> 97 </button>
97 </div> 98 </div>
98 </div> 99 </div>
99 </div> 100 </div>
100 </div> 101 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698