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

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

Issue 225523004: Updates the UI and reenables the fix introduced in commit 256939 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes review comments and some minor changes in the UI Created 6 years, 8 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 </div> 48 </div>
49 <div class="action-area button-strip"> 49 <div class="action-area button-strip">
50 <button id="delete-profile-cancel" i18n-content="cancel"></button> 50 <button id="delete-profile-cancel" i18n-content="cancel"></button>
51 <button id="delete-profile-ok" class="default-button" 51 <button id="delete-profile-ok" class="default-button"
52 i18n-content="deleteProfileOK"></button> 52 i18n-content="deleteProfileOK"></button>
53 </div> 53 </div>
54 </div> 54 </div>
55 <!-- Dialog for disconnecting enterprise managed profiles. --> 55 <!-- Dialog for disconnecting enterprise managed profiles. -->
56 <div id="manage-profile-overlay-disconnect-managed" hidden> 56 <div id="manage-profile-overlay-disconnect-managed" hidden>
57 <h1 i18n-content="disconnectManagedProfileTitle"></h1> 57 <h1 i18n-content="disconnectManagedProfileTitle"></h1>
58 <div class="content-area"
59 id="disconnect-managed-profile-domain-information"
60 i18n-values=".innerHTML:disconnectManagedProfileDomainInformation">
Patrick Dubroy 2014/04/24 23:23:52 Put the <span> here, and set its content via i18n-
kaliamoorthi 2014/04/24 23:49:23 Is it something like i18n-values=".innerHTML:<spa
61 </div>
58 <div class="content-area"> 62 <div class="content-area">
59 <div id="disconnect-managed-profile-message"> 63 <div id="disconnect-managed-profile-message">
60 <div id="disconnect-managed-profile-text" 64 <div id="disconnect-managed-profile-text"
61 i18n-content="disconnectManagedProfileText"> 65 i18n-values=".innerHTML:disconnectManagedProfileText">
62 </div> 66 </div>
63 </div> 67 </div>
64 </div> 68 </div>
65 <div class="action-area"> 69 <div class="action-area">
66 <div class="action-area-shortcut-container">
67 <a id="disconnect-managed-profile-learn-more" class="reset-hidden"
68 i18n-content="disconnectManagedProfileLearnMore" target="_blank"
69 i18n-values="href:enterpriseManagedAccountHelpURL">
70 </a>
71 </div>
72 <div class="button-strip"> 70 <div class="button-strip">
71 <button id="disconnect-managed-profile-ok" class="default-button"
72 i18n-content="disconnectManagedProfileOK"></button>
73 <button id="disconnect-managed-profile-cancel" 73 <button id="disconnect-managed-profile-cancel"
74 i18n-content="cancel"></button> 74 i18n-content="cancel"></button>
75 <button id="disconnect-managed-profile-ok" class="default-button"
76 i18n-content="disconnectManagedProfileOK"></button>
77 </div> 75 </div>
78 </div> 76 </div>
79 </div> 77 </div>
80 <!-- Dialog for creating profiles. --> 78 <!-- Dialog for creating profiles. -->
81 <div id="manage-profile-overlay-create" hidden> 79 <div id="manage-profile-overlay-create" hidden>
82 <h1 i18n-content="createProfileTitle"></h1> 80 <h1 i18n-content="createProfileTitle"></h1>
83 <div id="create-profile-content" class="content-area"> 81 <div id="create-profile-content" class="content-area">
84 <div id="create-profile-instructions"></div> 82 <div id="create-profile-instructions"></div>
85 <grid id="create-profile-icon-grid"></grid> 83 <grid id="create-profile-icon-grid"></grid>
86 <div id="create-profile-name-input-container"> 84 <div id="create-profile-name-input-container">
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 </button> 138 </button>
141 <div class="button-strip"> 139 <div class="button-strip">
142 <button id="create-profile-cancel" i18n-content="cancel"></button> 140 <button id="create-profile-cancel" i18n-content="cancel"></button>
143 <button id="create-profile-ok" i18n-content="createProfileConfirm" 141 <button id="create-profile-ok" i18n-content="createProfileConfirm"
144 class="default-button"> 142 class="default-button">
145 </button> 143 </button>
146 </div> 144 </div>
147 </div> 145 </div>
148 </div> 146 </div>
149 </div> 147 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698