Chromium Code Reviews| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 138 .name-container, | 138 .name-container, |
| 139 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { | 139 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { |
| 140 top: 180px; | 140 top: 180px; |
| 141 width: 180px; | 141 width: 180px; |
| 142 } | 142 } |
| 143 | 143 |
| 144 .pod.focused:not(.locked) .name-container { | 144 .pod.focused:not(.locked) .name-container { |
| 145 display: block; | 145 display: block; |
| 146 } | 146 } |
| 147 | 147 |
| 148 .pod .name { | 148 .pod .name-box { |
| 149 color: #363636; | 149 color: #363636; |
| 150 font-size: 15px; | 150 font-size: 15px; |
| 151 margin-top: 11px; | 151 margin-top: 11px; |
| 152 } | 152 } |
| 153 | 153 |
| 154 .pod .name-box .reauth-warning { | |
|
dzhioev (left Google)
2015/07/01 21:38:26
I beleive you can remove this. "display: none" fro
Alexander Alekseev
2015/07/02 18:53:40
Done.
| |
| 155 color: rgb(255, 193, 7); | |
| 156 display: none; | |
| 157 } | |
| 158 | |
| 159 .pod .name { | |
|
dzhioev (left Google)
2015/07/01 21:38:26
nit: remove this
Alexander Alekseev
2015/07/02 18:53:40
Done.
| |
| 160 } | |
| 161 | |
| 154 .pod.focused:not(.locked) .auth-container { | 162 .pod.focused:not(.locked) .auth-container { |
| 155 display: none; | 163 display: none; |
| 156 } | 164 } |
| 157 | 165 |
| 158 .pod.focused.locked .password-entry-container { | 166 .pod.focused.locked .password-entry-container { |
| 159 display: flex; | 167 display: flex; |
| 160 flex: auto; | 168 flex: auto; |
| 161 } | 169 } |
| 162 | 170 |
| 163 .action-box-area { | 171 .action-box-area { |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 192 .action-box-remove-user-warning .remove-warning-button { | 200 .action-box-remove-user-warning .remove-warning-button { |
| 193 height: 30px; | 201 height: 30px; |
| 194 } | 202 } |
| 195 | 203 |
| 196 .action-box-remove-user-warning .remove-warning-button:focus { | 204 .action-box-remove-user-warning .remove-warning-button:focus { |
| 197 /* Override the default blue border inherited from | 205 /* Override the default blue border inherited from |
| 198 button.custom-appearance:focus. */ | 206 button.custom-appearance:focus. */ |
| 199 border: 1px solid transparent !important; | 207 border: 1px solid transparent !important; |
| 200 box-shadow: inset 0 0 0 1px #fff; | 208 box-shadow: inset 0 0 0 1px #fff; |
| 201 } | 209 } |
| OLD | NEW |