| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 } | 192 } |
| 193 | 193 |
| 194 .action-box-button:hover, | 194 .action-box-button:hover, |
| 195 .action-box-area.active .action-box-button { | 195 .action-box-area.active .action-box-button { |
| 196 border-top: 6px solid #4c4c4c; | 196 border-top: 6px solid #4c4c4c; |
| 197 } | 197 } |
| 198 | 198 |
| 199 .action-box-remove-user-warning .remove-warning-button { | 199 .action-box-remove-user-warning .remove-warning-button { |
| 200 height: 30px; | 200 height: 30px; |
| 201 } | 201 } |
| 202 | |
| 203 .action-box-remove-user-warning .remove-warning-button:focus { | |
| 204 /* Override the default blue border inherited from | |
| 205 button.custom-appearance:focus. */ | |
| 206 border: 1px solid transparent !important; | |
| 207 box-shadow: inset 0 0 0 1px #fff; | |
| 208 } | |
| OLD | NEW |