| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 * This is the stylesheet used by user pods row of account picker UI. | 5 * This is the stylesheet used by user pods row of account picker UI. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 podrow { | 8 podrow { |
| 9 -webkit-box-align: center; | 9 -webkit-box-align: center; |
| 10 -webkit-box-pack: center; | 10 -webkit-box-pack: center; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 right: auto; | 175 right: auto; |
| 176 } | 176 } |
| 177 | 177 |
| 178 .capslock-on .pod.focused input[type='password']:not([hidden]) ~ .capslock-hint
{ | 178 .capslock-on .pod.focused input[type='password']:not([hidden]) ~ .capslock-hint
{ |
| 179 visibility: visible; | 179 visibility: visible; |
| 180 } | 180 } |
| 181 | 181 |
| 182 .remove-user-button { | 182 .remove-user-button { |
| 183 -webkit-transition: width 100ms ease-in-out, background 200ms ease-in-out; | 183 -webkit-transition: width 100ms ease-in-out, background 200ms ease-in-out; |
| 184 -webkit-box-shadow: none; | 184 -webkit-box-shadow: none; |
| 185 background: url('chrome://theme/IDR_CLOSE_BAR') center center no-repeat; | 185 background: url('../../../../../ui/resources/close_bar.png') center center no-
repeat; |
| 186 border: 0; | 186 border: 0; |
| 187 height: 16px; | 187 height: 16px; |
| 188 margin: 0; | 188 margin: 0; |
| 189 min-width: 16px; | 189 min-width: 16px; |
| 190 padding: 0; | 190 padding: 0; |
| 191 position: absolute; | 191 position: absolute; |
| 192 right: 14px; | 192 right: 14px; |
| 193 top: 14px; | 193 top: 14px; |
| 194 width: 16px; | 194 width: 16px; |
| 195 } | 195 } |
| 196 | 196 |
| 197 .remove-user-button:hover { | 197 .remove-user-button:hover { |
| 198 -webkit-box-shadow: none; | 198 -webkit-box-shadow: none; |
| 199 background: url('chrome://theme/IDR_CLOSE_BAR_H') center center no-repeat; | 199 background: url('../../../../../ui/resources/close_bar_h.png') center center n
o-repeat; |
| 200 } | 200 } |
| 201 | 201 |
| 202 .remove-user-button.active { | 202 .remove-user-button.active { |
| 203 background-color: #e94949; | 203 background-color: #e94949; |
| 204 background-image: none; | 204 background-image: none; |
| 205 border-radius: 4px; | 205 border-radius: 4px; |
| 206 color: white; | 206 color: white; |
| 207 font-size: 10px; | 207 font-size: 10px; |
| 208 height: initial; | 208 height: initial; |
| 209 padding: 2px 4px; | 209 padding: 2px 4px; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 220 position: absolute; | 220 position: absolute; |
| 221 /* Width of .user-image. */ | 221 /* Width of .user-image. */ |
| 222 width: 160px; | 222 width: 160px; |
| 223 z-index: 1; | 223 z-index: 1; |
| 224 } | 224 } |
| 225 | 225 |
| 226 .pod.focused .signed-in-indicator { | 226 .pod.focused .signed-in-indicator { |
| 227 /* Track shifting of .user-image on pod focus. */ | 227 /* Track shifting of .user-image on pod focus. */ |
| 228 -webkit-transform: translateY(-1px); | 228 -webkit-transform: translateY(-1px); |
| 229 } | 229 } |
| OLD | NEW |