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

Side by Side Diff: chrome/browser/resources/user_manager/user_manager.css

Issue 898533005: Rename for some supervised users ambiguity. Adding child account icon to the avatar menu bubble. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename for user-removal-warning. Created 5 years, 10 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 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /* Overrides for the desktop user manager screen. */ 6 /* Overrides for the desktop user manager screen. */
7 7
8 .oobe-display { 8 .oobe-display {
9 background-color: #eee; 9 background-color: #eee;
10 } 10 }
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 width: 32px; 105 width: 32px;
106 } 106 }
107 107
108 .pod.locked .locked-indicator { 108 .pod.locked .locked-indicator {
109 background-image: -webkit-image-set( 109 background-image: -webkit-image-set(
110 url(chrome://theme/IDR_ICON_PROFILES_LOCKED) 1x, 110 url(chrome://theme/IDR_ICON_PROFILES_LOCKED) 1x,
111 url(chrome://theme/IDR_ICON_PROFILES_LOCKED@2x) 2x); 111 url(chrome://theme/IDR_ICON_PROFILES_LOCKED@2x) 2x);
112 display: initial; 112 display: initial;
113 } 113 }
114 114
115 .pod.legacy-supervised .supervised-indicator { 115 .pod.legacy-supervised .legacy-supervised-indicator {
116 background-image: -webkit-image-set( 116 background-image: -webkit-image-set(
117 url(chrome://theme/IDR_ICON_PROFILES_SUPERVISED) 1x, 117 url(chrome://theme/IDR_ICON_PROFILES_LEGACY_SUPERVISED) 1x,
118 url(chrome://theme/IDR_ICON_PROFILES_SUPERVISED@2x) 2x); 118 url(chrome://theme/IDR_ICON_PROFILES_LEGACY_SUPERVISED@2x) 2x);
119 display: initial; 119 display: initial;
120 } 120 }
121 121
122 .pod.child .child-indicator { 122 .pod.child .child-indicator {
123 background-image: -webkit-image-set( 123 background-image: -webkit-image-set(
124 url(chrome://theme/IDR_ICON_PROFILES_CHILD) 1x, 124 url(chrome://theme/IDR_ICON_PROFILES_CHILD) 1x,
125 url(chrome://theme/IDR_ICON_PROFILES_CHILD@2x) 2x); 125 url(chrome://theme/IDR_ICON_PROFILES_CHILD@2x) 2x);
126 display: initial; 126 display: initial;
127 } 127 }
128 128
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 .action-box-remove-user-warning .remove-warning-button { 192 .action-box-remove-user-warning .remove-warning-button {
193 height: 30px; 193 height: 30px;
194 } 194 }
195 195
196 .action-box-remove-user-warning .remove-warning-button:focus { 196 .action-box-remove-user-warning .remove-warning-button:focus {
197 /* Override the default blue border inherited from 197 /* Override the default blue border inherited from
198 button.custom-appearance:focus. */ 198 button.custom-appearance:focus. */
199 border: 1px solid transparent !important; 199 border: 1px solid transparent !important;
200 box-shadow: inset 0 0 0 1px #fff; 200 box-shadow: inset 0 0 0 1px #fff;
201 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698