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

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

Issue 10827011: Switched button order for manage dialog (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 5 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 | « no previous file | 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>
(...skipping 23 matching lines...) Expand all
34 </div> 34 </div>
35 </div> 35 </div>
36 <!-- Dialog for deleting profiles. --> 36 <!-- Dialog for deleting profiles. -->
37 <div id="manage-profile-overlay-delete" hidden> 37 <div id="manage-profile-overlay-delete" hidden>
38 <h1 i18n-content="deleteProfileTitle"></h1> 38 <h1 i18n-content="deleteProfileTitle"></h1>
39 <div class="content-area"> 39 <div class="content-area">
40 <div id="delete-profile-message"></div> 40 <div id="delete-profile-message"></div>
41 </div> 41 </div>
42 <div class="action-area"> 42 <div class="action-area">
43 <div class="button-strip"> 43 <div class="button-strip">
44 <button id="delete-profile-cancel" i18n-content="cancel"></button>
James Hawkins 2012/07/25 18:14:35 This one is correct as-is.
Halli 2012/07/25 18:21:32 Done.
45 <button id="delete-profile-ok" 44 <button id="delete-profile-ok"
46 i18n-content="deleteProfileOK"></button> 45 i18n-content="deleteProfileOK"></button>
46 <button id="delete-profile-cancel" i18n-content="cancel"></button>
47 </div> 47 </div>
48 </div> 48 </div>
49 </div> 49 </div>
50 <!-- Dialog for creating profiles. --> 50 <!-- Dialog for creating profiles. -->
51 <div id="manage-profile-overlay-create" hidden> 51 <div id="manage-profile-overlay-create" hidden>
52 <h1 i18n-content="createProfileTitle"></h1> 52 <h1 i18n-content="createProfileTitle"></h1>
53 <div id="create-profile-content" class="content-area"> 53 <div id="create-profile-content" class="content-area">
54 <div id="create-profile-instructions"></div> 54 <div id="create-profile-instructions"></div>
55 <grid id="create-profile-icon-grid"></grid> 55 <grid id="create-profile-icon-grid"></grid>
56 <div id="create-profile-name-div"> 56 <div id="create-profile-name-div">
57 <span id="create-profile-name-label" 57 <span id="create-profile-name-label"
58 i18n-content="manageProfilesNameLabel"> 58 i18n-content="manageProfilesNameLabel">
59 </span> 59 </span>
60 <input id="create-profile-name" type="text" required> 60 <input id="create-profile-name" type="text" required>
61 </div> 61 </div>
62 <div id="create-profile-error-bubble" hidden></div> 62 <div id="create-profile-error-bubble" hidden></div>
63 </div> 63 </div>
64 <div class="action-area"> 64 <div class="action-area">
65 <div class="action-area-checkbox-container"> 65 <div class="action-area-checkbox-container">
66 <div class="checkbox"> 66 <div class="checkbox">
67 <label> 67 <label>
68 <input id="create-shortcut" type="checkbox"> 68 <input id="create-shortcut" type="checkbox">
69 <span for="create-shortcut" 69 <span for="create-shortcut"
70 i18n-content="createProfileShortcut"> 70 i18n-content="createProfileShortcut">
71 </span> 71 </span>
72 </label> 72 </label>
73 </div> 73 </div>
74 </div> 74 </div>
75 <div class="button-strip"> 75 <div class="button-strip">
76 <button id="create-profile-cancel" i18n-content="cancel"></button>
76 <button id="create-profile-ok" i18n-content="createProfileConfirm"> 77 <button id="create-profile-ok" i18n-content="createProfileConfirm">
77 </button> 78 </button>
78 <button id="create-profile-cancel" i18n-content="cancel"></button>
79 </div> 79 </div>
80 </div> 80 </div>
81 </div> 81 </div>
82 </div> 82 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698