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

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

Issue 10832075: Create/Manage dialog UI changes for M22 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « chrome/browser/resources/options2/manage_profile_overlay.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-div"> 11 <div class="profile-name-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>
15 <div class="profile-name-container">
14 <input id="manage-profile-name" type="text" required> 16 <input id="manage-profile-name" type="text" required>
15 </div> 17 </div>
16 <div id="manage-profile-error-bubble" hidden> 18 <div id="manage-profile-error-bubble" hidden>
17 </div> 19 </div>
18 </div> 20 </div>
19 <div class="action-area"> 21 <div class="action-area">
20 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for 22 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for
21 shortcut creation in M23 23 shortcut creation in M23
22 <div class="action-area-checkbox-container"> 24 <div class="action-area-checkbox-container">
23 <div class="checkbox"> 25 <div class="checkbox">
(...skipping 25 matching lines...) Expand all
49 i18n-content="deleteProfileOK"></button> 51 i18n-content="deleteProfileOK"></button>
50 </div> 52 </div>
51 </div> 53 </div>
52 </div> 54 </div>
53 <!-- Dialog for creating profiles. --> 55 <!-- Dialog for creating profiles. -->
54 <div id="manage-profile-overlay-create" hidden> 56 <div id="manage-profile-overlay-create" hidden>
55 <h1 i18n-content="createProfileTitle"></h1> 57 <h1 i18n-content="createProfileTitle"></h1>
56 <div id="create-profile-content" class="content-area"> 58 <div id="create-profile-content" class="content-area">
57 <div id="create-profile-instructions"></div> 59 <div id="create-profile-instructions"></div>
58 <grid id="create-profile-icon-grid"></grid> 60 <grid id="create-profile-icon-grid"></grid>
59 <div id="create-profile-name-div"> 61 <div class="profile-name-container">
60 <span id="create-profile-name-label" 62 <span id="create-profile-name-label"
61 i18n-content="manageProfilesNameLabel"> 63 i18n-content="manageProfilesNameLabel">
62 </span> 64 </span>
65 </div>
66 <div class="profile-name-container">
63 <input id="create-profile-name" type="text" required> 67 <input id="create-profile-name" type="text" required>
64 </div> 68 </div>
65 <div id="create-profile-error-bubble" hidden></div> 69 <div id="create-profile-error-bubble" hidden></div>
66 </div> 70 </div>
67 <div class="action-area"> 71 <div class="action-area">
68 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for 72 <!-- TODO: (hallielaine) activate this checkbox, and add hooks for
69 shortcut creation in M23 73 shortcut creation in M23
70 <div class="action-area-checkbox-container"> 74 <div class="action-area-checkbox-container">
71 <div class="checkbox"> 75 <div class="checkbox">
72 <label> 76 <label>
73 <input id="create-shortcut" type="checkbox"> 77 <input id="create-shortcut" type="checkbox">
74 <span for="create-shortcut" 78 <span for="create-shortcut"
75 i18n-content="createProfileShortcut"> 79 i18n-content="createProfileShortcut">
76 </span> 80 </span>
77 </label> 81 </label>
78 </div> 82 </div>
79 </div> 83 </div>
80 --> 84 -->
81 <div class="button-strip"> 85 <div class="button-strip">
82 <button id="create-profile-cancel" i18n-content="cancel"></button> 86 <button id="create-profile-cancel" i18n-content="cancel"></button>
83 <button id="create-profile-ok" i18n-content="createProfileConfirm"> 87 <button id="create-profile-ok" i18n-content="createProfileConfirm">
84 </button> 88 </button>
85 </div> 89 </div>
86 </div> 90 </div>
87 </div> 91 </div>
88 </div> 92 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/manage_profile_overlay.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698