| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 body { | 5 body { |
| 6 background-color: #eee; | 6 background-color: #eee; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #login-header-bar { |
| 10 bottom: 0; |
| 11 left: 0; |
| 12 position: absolute; |
| 13 right: 0; |
| 14 } |
| 15 |
| 9 /* Overrides for the desktop user manager screen. */ | 16 /* Overrides for the desktop user manager screen. */ |
| 10 | 17 |
| 11 #outer-container { | 18 #outer-container { |
| 12 min-height: 0; | 19 min-height: 0; |
| 13 } | 20 } |
| 14 | 21 |
| 15 .bubble.faded { | 22 .bubble.faded { |
| 16 opacity: 0; | 23 opacity: 0; |
| 17 } | 24 } |
| 18 | 25 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 .action-box-remove-user-warning .remove-warning-button { | 205 .action-box-remove-user-warning .remove-warning-button { |
| 199 height: 30px; | 206 height: 30px; |
| 200 } | 207 } |
| 201 | 208 |
| 202 .action-box-remove-user-warning .remove-warning-button:focus { | 209 .action-box-remove-user-warning .remove-warning-button:focus { |
| 203 /* Override the default blue border inherited from | 210 /* Override the default blue border inherited from |
| 204 button.custom-appearance:focus. */ | 211 button.custom-appearance:focus. */ |
| 205 border: 1px solid transparent !important; | 212 border: 1px solid transparent !important; |
| 206 box-shadow: inset 0 0 0 1px #fff; | 213 box-shadow: inset 0 0 0 1px #fff; |
| 207 } | 214 } |
| OLD | NEW |