| OLD | NEW |
| 1 /* Copyright 2013 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 | 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 } |
| 11 | 11 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 108 |
| 109 /* Using -webkit-mask on the indicators allows us to tweak the color. */ | 109 /* Using -webkit-mask on the indicators allows us to tweak the color. */ |
| 110 .pod .indicator-container > div { | 110 .pod .indicator-container > div { |
| 111 -webkit-mask-position: center; | 111 -webkit-mask-position: center; |
| 112 -webkit-mask-repeat: no-repeat; | 112 -webkit-mask-repeat: no-repeat; |
| 113 -webkit-mask-size: 24px; | 113 -webkit-mask-size: 24px; |
| 114 } | 114 } |
| 115 | 115 |
| 116 .pod.locked .locked-indicator { | 116 .pod.locked .locked-indicator { |
| 117 -webkit-mask-image: url(../../../../ui/webui/resources/images/lock.svg); | 117 -webkit-mask-image: url(../../../../ui/webui/resources/images/lock.svg); |
| 118 background-color: #757575; | 118 background-color: rgb(117, 117, 117); |
| 119 display: initial; | 119 display: initial; |
| 120 } | 120 } |
| 121 | 121 |
| 122 .pod.legacy-supervised .legacy-supervised-indicator { | 122 .pod.legacy-supervised .legacy-supervised-indicator { |
| 123 -webkit-mask-image: | 123 -webkit-mask-image: |
| 124 url(../../../../ui/webui/resources/images/supervisor_account.svg); | 124 url(../../../../ui/webui/resources/images/supervisor_account.svg); |
| 125 background-color: rgb(66, 133, 244); | 125 background-color: rgb(66, 133, 244); |
| 126 display: initial; | 126 display: initial; |
| 127 } | 127 } |
| 128 | 128 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 146 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { | 146 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { |
| 147 top: 180px; | 147 top: 180px; |
| 148 width: 180px; | 148 width: 180px; |
| 149 } | 149 } |
| 150 | 150 |
| 151 .pod.focused:not(.locked) .name-container { | 151 .pod.focused:not(.locked) .name-container { |
| 152 display: block; | 152 display: block; |
| 153 } | 153 } |
| 154 | 154 |
| 155 .pod .name { | 155 .pod .name { |
| 156 color: #363636; | 156 color: rgb(54, 54, 54); |
| 157 font-size: 15px; | 157 font-size: 15px; |
| 158 margin-top: 11px; | 158 margin-top: 11px; |
| 159 } | 159 } |
| 160 | 160 |
| 161 .pod.focused:not(.locked) .auth-container { | 161 .pod.focused:not(.locked) .auth-container { |
| 162 display: none; | 162 display: none; |
| 163 } | 163 } |
| 164 | 164 |
| 165 .pod[auth-type='offlinePassword'].focused.locked .password-entry-container { | 165 .pod[auth-type='offlinePassword'].focused.locked .password-entry-container { |
| 166 display: flex; | 166 display: flex; |
| 167 flex: auto; | 167 flex: auto; |
| 168 } | 168 } |
| 169 | 169 |
| 170 .action-box-area { | 170 .action-box-area { |
| 171 background-color: #f5f5f5; | 171 background-color: rgb(245, 245, 245); |
| 172 height: 24px; | 172 height: 24px; |
| 173 /* Because of crbug.com/406529, the text in the .name div is janky if there's | 173 /* Because of crbug.com/406529, the text in the .name div is janky if there's |
| 174 an opacity transition in this div. */ | 174 an opacity transition in this div. */ |
| 175 transition: none; | 175 transition: none; |
| 176 width: 24px; | 176 width: 24px; |
| 177 } | 177 } |
| 178 | 178 |
| 179 .action-box-button, | 179 .action-box-button, |
| 180 .action-box-button:hover, | 180 .action-box-button:hover, |
| 181 .action-box-area.active .action-box-button { | 181 .action-box-area.active .action-box-button { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 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 | 202 |
| 203 .action-box-remove-user-warning .remove-warning-button:focus { | 203 .action-box-remove-user-warning .remove-warning-button:focus { |
| 204 /* Override the default blue border inherited from | 204 /* Override the default blue border inherited from |
| 205 button.custom-appearance:focus. */ | 205 button.custom-appearance:focus. */ |
| 206 border: 1px solid transparent !important; | 206 border: 1px solid transparent !important; |
| 207 box-shadow: inset 0 0 0 1px #fff; | 207 box-shadow: inset 0 0 0 1px #fff; |
| 208 } | 208 } |
| OLD | NEW |