| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 html[dir=rtl] .user-image-pane { | 52 html[dir=rtl] .user-image-pane { |
| 53 right: 0; | 53 right: 0; |
| 54 } | 54 } |
| 55 | 55 |
| 56 .pod .name { | 56 .pod .name { |
| 57 margin-top: 12px; | 57 margin-top: 12px; |
| 58 } | 58 } |
| 59 | 59 |
| 60 .pod .user-image { | 60 .pod .user-image { |
| 61 max-height: 180px; | 61 height: 180px; |
| 62 max-width: 180px; | 62 width: 180px; |
| 63 opacity: 1; | |
| 64 } | 63 } |
| 65 | 64 |
| 66 .pod input[type='password'] { | 65 .pod input[type='password'] { |
| 67 height: 45px; /* 1px shorter as to not overlap the pod's rounded corners */ | 66 height: 45px; /* 1px shorter as to not overlap the pod's rounded corners */ |
| 68 top: 1px; | 67 top: 1px; |
| 69 } | 68 } |
| 70 | 69 |
| 71 .pod.locked .locked-indicator { | 70 .pod.locked .locked-indicator { |
| 72 background-image: -webkit-image-set( | 71 background-image: -webkit-image-set( |
| 73 url('chrome://theme/IDR_ICON_PROFILES_LOCKED') 1x, | 72 url('chrome://theme/IDR_ICON_PROFILES_LOCKED') 1x, |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 margin: 0; | 151 margin: 0; |
| 153 position: absolute; | 152 position: absolute; |
| 154 top: 9px; | 153 top: 9px; |
| 155 width: 0; | 154 width: 0; |
| 156 } | 155 } |
| 157 | 156 |
| 158 .action-box-button:hover, | 157 .action-box-button:hover, |
| 159 .action-box-area.active .action-box-button { | 158 .action-box-area.active .action-box-button { |
| 160 border-top: 6px solid #4c4c4c; | 159 border-top: 6px solid #4c4c4c; |
| 161 } | 160 } |
| OLD | NEW |