OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |