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

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

Issue 1826903002: updated UI, default profile name, check for existing supervised user before create (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 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 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> 1 <link rel="import" href="chrome://md-user-manager/shared_styles.html">
2 2
3 <dom-module id="user-manager-styles"> 3 <dom-module id="user-manager-styles">
4 <template> 4 <template>
5 <style include="shared-styles"> 5 <style include="shared-styles">
6 body { 6 body {
7 background-color: #eee; 7 background-color: #eee;
8 } 8 }
9 9
10 /* Overrides for the desktop user manager screen. */ 10 /* Overrides for the desktop user manager screen. */
11 #login-header-bar {
12 bottom: 0;
13 left: 0;
14 position: absolute;
15 right: 0;
16 }
11 17
12 #outer-container { 18 #outer-container {
13 min-height: 0; 19 min-height: 0;
14 } 20 }
15 21
16 .bubble.faded { 22 .bubble.faded {
17 opacity: 0; 23 opacity: 0;
18 } 24 }
19 25
20 .pod { 26 .pod {
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 208
203 .action-box-remove-user-warning .remove-warning-button:focus { 209 .action-box-remove-user-warning .remove-warning-button:focus {
204 /* Override the default blue border inherited from 210 /* Override the default blue border inherited from
205 button.custom-appearance:focus. */ 211 button.custom-appearance:focus. */
206 border: 1px solid transparent !important; 212 border: 1px solid transparent !important;
207 box-shadow: inset 0 0 0 1px #fff; 213 box-shadow: inset 0 0 0 1px #fff;
208 } 214 }
209 </style> 215 </style>
210 </template> 216 </template>
211 </dom-module> 217 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698