| 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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 | 663 |
| 664 .action-box-remove-user-warning-table-numbers { | 664 .action-box-remove-user-warning-table-numbers { |
| 665 color: #757575; | 665 color: #757575; |
| 666 text-align: end; | 666 text-align: end; |
| 667 } | 667 } |
| 668 | 668 |
| 669 /* Hide dialog elements not in a correct category. Only combinations currently | 669 /* Hide dialog elements not in a correct category. Only combinations currently |
| 670 in use are included here. */ | 670 in use are included here. */ |
| 671 .pod.legacy-supervised .non-sync, | 671 .pod.legacy-supervised .non-sync, |
| 672 .pod.legacy-supervised .action-box-remove-user-warning-text, | 672 .pod.legacy-supervised .action-box-remove-user-warning-text, |
| 673 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, |
| 673 .pod:not(.legacy-supervised) | 674 .pod:not(.legacy-supervised) |
| 674 .action-box-remove-legacy-supervised-user-warning-text, | 675 .action-box-remove-legacy-supervised-user-warning-text, |
| 675 .pod.synced .non-sync, | 676 .pod.synced .non-sync, |
| 676 .pod.has-no-stats .has-stats { | 677 .pod.has-no-stats .has-stats { |
| 677 display: none; | 678 display: none; |
| 678 } | 679 } |
| 679 | 680 |
| 680 .user-type-bubble { | 681 .user-type-bubble { |
| 681 background-color: white; | 682 background-color: white; |
| 682 border: 1px solid lightgray; | 683 border: 1px solid lightgray; |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 -webkit-animation: ellipsis-component2 1.5s infinite; | 908 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 908 } | 909 } |
| 909 | 910 |
| 910 @-webkit-keyframes ellipsis-component2 { | 911 @-webkit-keyframes ellipsis-component2 { |
| 911 0% { opacity: 0; } | 912 0% { opacity: 0; } |
| 912 25% { opacity: 0; } | 913 25% { opacity: 0; } |
| 913 50% { opacity: 0; } | 914 50% { opacity: 0; } |
| 914 75% { opacity: 1; } | 915 75% { opacity: 1; } |
| 915 100% { opacity: 0; } | 916 100% { opacity: 0; } |
| 916 } | 917 } |
| OLD | NEW |