| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 /* Temporarily disabled because animation interferes with updating screen's | 9 /* Temporarily disabled because animation interferes with updating screen's |
| 10 size. */ | 10 size. */ |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 .pod[auth-type='userClick'] .password-label { | 212 .pod[auth-type='userClick'] .password-label { |
| 213 display: block; | 213 display: block; |
| 214 flex: auto; | 214 flex: auto; |
| 215 margin-top: 11px; | 215 margin-top: 11px; |
| 216 overflow: hidden; | 216 overflow: hidden; |
| 217 text-overflow: ellipsis; | 217 text-overflow: ellipsis; |
| 218 white-space: nowrap; | 218 white-space: nowrap; |
| 219 } | 219 } |
| 220 | 220 |
| 221 .custom-icon { | 221 .custom-icon { |
| 222 -webkit-margin-end: 0; |
| 223 -webkit-margin-start: auto; |
| 222 background-position: center; | 224 background-position: center; |
| 223 background-repeat: no-repeat; | 225 background-repeat: no-repeat; |
| 224 flex: none; | 226 flex: none; |
| 227 } |
| 228 |
| 229 .custom-icon-container { |
| 230 display: flex; |
| 231 flex: none; |
| 232 flex-direction: column; |
| 225 height: 40px; | 233 height: 40px; |
| 234 justify-content: center; |
| 226 width: 40px; | 235 width: 40px; |
| 227 } | 236 } |
| 228 | 237 |
| 229 .pod[auth-type='onlineSignIn'] .signin-button-container, | 238 .pod[auth-type='onlineSignIn'] .signin-button-container, |
| 230 .launch-app-button-container { | 239 .launch-app-button-container { |
| 231 display: block; | 240 display: block; |
| 232 flex: auto; | 241 flex: auto; |
| 233 text-align: center; | 242 text-align: center; |
| 234 } | 243 } |
| 235 | 244 |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 .user-type-icon-area.policy:hover ~ .user-type-bubble { | 425 .user-type-icon-area.policy:hover ~ .user-type-bubble { |
| 417 opacity: 1; | 426 opacity: 1; |
| 418 visibility: visible; | 427 visibility: visible; |
| 419 } | 428 } |
| 420 | 429 |
| 421 .user-type-bubble-header { | 430 .user-type-bubble-header { |
| 422 font-weight: bold; | 431 font-weight: bold; |
| 423 margin-bottom: 14px; | 432 margin-bottom: 14px; |
| 424 } | 433 } |
| 425 | 434 |
| 426 .easy-unlock-button-content { | |
| 427 width: 145px; | |
| 428 } | |
| 429 | |
| 430 /**** Public account user pod rules *******************************************/ | 435 /**** Public account user pod rules *******************************************/ |
| 431 | 436 |
| 432 .pod.public-account.expanded { | 437 .pod.public-account.expanded { |
| 433 width: 500px; | 438 width: 500px; |
| 434 } | 439 } |
| 435 | 440 |
| 436 .pod.public-account.expanded.advanced { | 441 .pod.public-account.expanded.advanced { |
| 437 width: 610px; | 442 width: 610px; |
| 438 } | 443 } |
| 439 | 444 |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 top: 4px; | 593 top: 4px; |
| 589 } | 594 } |
| 590 | 595 |
| 591 .pod.public-account.expanded.advanced .language-and-input-container { | 596 .pod.public-account.expanded.advanced .language-and-input-container { |
| 592 display: none; | 597 display: none; |
| 593 } | 598 } |
| 594 | 599 |
| 595 .enter-button { | 600 .enter-button { |
| 596 font-size: 14px; | 601 font-size: 14px; |
| 597 } | 602 } |
| OLD | NEW |