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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 | 659 |
660 .action-box-remove-user-warning-table td { | 660 .action-box-remove-user-warning-table td { |
661 padding: 0; | 661 padding: 0; |
662 } | 662 } |
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 .remove-warning-button { |
| 670 font-weight: bold; |
| 671 } |
| 672 |
669 /* Hide dialog elements not in a correct category. Only combinations currently | 673 /* Hide dialog elements not in a correct category. Only combinations currently |
670 in use are included here. */ | 674 in use are included here. */ |
671 .pod.legacy-supervised .non-sync, | 675 .pod.legacy-supervised .non-sync, |
672 .pod.legacy-supervised .action-box-remove-user-warning-text, | 676 .pod.legacy-supervised .action-box-remove-user-warning-text, |
673 .pod:not(.legacy-supervised) | 677 .pod:not(.legacy-supervised) |
674 .action-box-remove-legacy-supervised-user-warning-text, | 678 .action-box-remove-legacy-supervised-user-warning-text, |
675 .pod.synced .non-sync, | 679 .pod.synced .non-sync, |
676 .pod.has-no-stats .has-stats { | 680 .pod.has-no-stats .has-stats { |
677 display: none; | 681 display: none; |
678 } | 682 } |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 -webkit-animation: ellipsis-component2 1.5s infinite; | 911 -webkit-animation: ellipsis-component2 1.5s infinite; |
908 } | 912 } |
909 | 913 |
910 @-webkit-keyframes ellipsis-component2 { | 914 @-webkit-keyframes ellipsis-component2 { |
911 0% { opacity: 0; } | 915 0% { opacity: 0; } |
912 25% { opacity: 0; } | 916 25% { opacity: 0; } |
913 50% { opacity: 0; } | 917 50% { opacity: 0; } |
914 75% { opacity: 1; } | 918 75% { opacity: 1; } |
915 100% { opacity: 0; } | 919 100% { opacity: 0; } |
916 } | 920 } |
OLD | NEW |