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

Side by Side Diff: chrome/browser/resources/md_user_manager/create_profile.html

Issue 2223743003: MD User Manager: Changes to 'import supervised users' dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="/import_supervised_user.html"> 1 <link rel="import" href="/import_supervised_user.html">
2 <link rel="import" href="/profile_browser_proxy.html"> 2 <link rel="import" href="/profile_browser_proxy.html">
3 <link rel="import" href="/shared_styles.html"> 3 <link rel="import" href="/shared_styles.html">
4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select or/cr_profile_avatar_selector.html"> 4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select or/cr_profile_avatar_selector.html">
5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 5 <link rel="import" href="chrome://resources/cr_elements/icons.html">
6 <link rel="import" href="chrome://resources/html/action_link.html"> 6 <link rel="import" href="chrome://resources/html/action_link.html">
7 <link rel="import" href="chrome://resources/html/cr.html"> 7 <link rel="import" href="chrome://resources/html/cr.html">
8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
9 <link rel="import" href="chrome://resources/html/polymer.html"> 9 <link rel="import" href="chrome://resources/html/polymer.html">
10 <link rel="import" href="chrome://resources/html/util.html"> 10 <link rel="import" href="chrome://resources/html/util.html">
(...skipping 13 matching lines...) Expand all
24 .container { 24 .container {
25 color: var(--primary-text-color); 25 color: var(--primary-text-color);
26 width: var(--page-width); 26 width: var(--page-width);
27 } 27 }
28 28
29 #message-container { 29 #message-container {
30 -webkit-transition: top 400ms cubic-bezier(.4, 0, .2, 1), 30 -webkit-transition: top 400ms cubic-bezier(.4, 0, .2, 1),
31 visibility 0s linear 400ms; 31 visibility 0s linear 400ms;
32 align-items: center; 32 align-items: center;
33 background-color: var(--paper-red-50); 33 background-color: var(--paper-red-50);
34 box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .12);
34 color: var(--google-red-700); 35 color: var(--google-red-700);
35 display: flex; 36 display: flex;
36 height: 40px; 37 height: 40px;
37 left: 0; 38 left: 0;
38 overflow: hidden; 39 overflow: hidden;
39 padding: 0 16px; 40 padding: 0 16px;
40 position: absolute; 41 position: absolute;
41 right: 0; 42 right: 0;
42 top: -40px; 43 top: -40px;
43 visibility: hidden; 44 visibility: hidden;
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 loadingSupervisedUsers_, 202 loadingSupervisedUsers_,
202 profileName_)]]"> 203 profileName_)]]">
203 $i18n{createProfileConfirm} 204 $i18n{createProfileConfirm}
204 </paper-button> 205 </paper-button>
205 </div> 206 </div>
206 <import-supervised-user id="importUserPopup"></import-supervised-user> 207 <import-supervised-user id="importUserPopup"></import-supervised-user>
207 </div> 208 </div>
208 </template> 209 </template>
209 <script src="create_profile.js"></script> 210 <script src="create_profile.js"></script>
210 </dom-module> 211 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698