| 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 right: auto; | 525 right: auto; |
| 526 } | 526 } |
| 527 | 527 |
| 528 .action-box-menu-title { | 528 .action-box-menu-title { |
| 529 color: #757575; | 529 color: #757575; |
| 530 display: flex; | 530 display: flex; |
| 531 flex-direction: column; | 531 flex-direction: column; |
| 532 padding: 7px 20px; | 532 padding: 7px 20px; |
| 533 } | 533 } |
| 534 | 534 |
| 535 .action-box-menu-title:focus { |
| 536 outline-style: none; |
| 537 } |
| 538 |
| 535 .action-box-menu-title-name, | 539 .action-box-menu-title-name, |
| 536 .action-box-menu-title-email { | 540 .action-box-menu-title-email { |
| 537 flex: none; | 541 flex: none; |
| 538 height: 23px; | 542 height: 23px; |
| 539 line-height: 19px; | 543 line-height: 19px; |
| 540 overflow: hidden; | 544 overflow: hidden; |
| 541 text-overflow: ellipsis; | 545 text-overflow: ellipsis; |
| 542 white-space: nowrap; | 546 white-space: nowrap; |
| 543 } | 547 } |
| 544 | 548 |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 -webkit-animation: ellipsis-component2 1.5s infinite; | 830 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 827 } | 831 } |
| 828 | 832 |
| 829 @-webkit-keyframes ellipsis-component2 { | 833 @-webkit-keyframes ellipsis-component2 { |
| 830 0% { opacity: 0; } | 834 0% { opacity: 0; } |
| 831 25% { opacity: 0; } | 835 25% { opacity: 0; } |
| 832 50% { opacity: 0; } | 836 50% { opacity: 0; } |
| 833 75% { opacity: 1; } | 837 75% { opacity: 1; } |
| 834 100% { opacity: 0; } | 838 100% { opacity: 0; } |
| 835 } | 839 } |
| OLD | NEW |