| 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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 text-align: end; | 688 text-align: end; |
| 689 } | 689 } |
| 690 | 690 |
| 691 /* Hide dialog elements not in a correct category. Only combinations currently | 691 /* Hide dialog elements not in a correct category. Only combinations currently |
| 692 in use are included here. */ | 692 in use are included here. */ |
| 693 .pod.legacy-supervised .non-sync, | 693 .pod.legacy-supervised .non-sync, |
| 694 .pod.legacy-supervised .action-box-remove-user-warning-text, | 694 .pod.legacy-supervised .action-box-remove-user-warning-text, |
| 695 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, | 695 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, |
| 696 .pod:not(.legacy-supervised) | 696 .pod:not(.legacy-supervised) |
| 697 .action-box-remove-legacy-supervised-user-warning-text, | 697 .action-box-remove-legacy-supervised-user-warning-text, |
| 698 .pod.synced .non-sync, | 698 .pod.synced .non-sync { |
| 699 .pod.has-no-stats .has-stats { | |
| 700 display: none; | 699 display: none; |
| 701 } | 700 } |
| 702 | 701 |
| 703 .user-type-bubble { | 702 .user-type-bubble { |
| 704 background-color: white; | 703 background-color: white; |
| 705 border: 1px solid lightgray; | 704 border: 1px solid lightgray; |
| 706 border-radius: 2px; | 705 border-radius: 2px; |
| 707 left: 5px; | 706 left: 5px; |
| 708 opacity: 0; | 707 opacity: 0; |
| 709 padding: 17px; | 708 padding: 17px; |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 animation: ellipsis-component2 1.5s infinite; | 1014 animation: ellipsis-component2 1.5s infinite; |
| 1016 } | 1015 } |
| 1017 | 1016 |
| 1018 @keyframes ellipsis-component2 { | 1017 @keyframes ellipsis-component2 { |
| 1019 0% { opacity: 0; } | 1018 0% { opacity: 0; } |
| 1020 25% { opacity: 0; } | 1019 25% { opacity: 0; } |
| 1021 50% { opacity: 0; } | 1020 50% { opacity: 0; } |
| 1022 75% { opacity: 1; } | 1021 75% { opacity: 1; } |
| 1023 100% { opacity: 0; } | 1022 100% { opacity: 0; } |
| 1024 } | 1023 } |
| OLD | NEW |