| 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 | 666 |
| 667 .action-box-remove-user-warning-table td { | 667 .action-box-remove-user-warning-table td { |
| 668 padding: 0; | 668 padding: 0; |
| 669 } | 669 } |
| 670 | 670 |
| 671 .action-box-remove-user-warning-table-numbers { | 671 .action-box-remove-user-warning-table-numbers { |
| 672 color: #757575; | 672 color: #757575; |
| 673 text-align: end; | 673 text-align: end; |
| 674 } | 674 } |
| 675 | 675 |
| 676 .remove-warning-button { | |
| 677 font-weight: bold; | |
| 678 } | |
| 679 | |
| 680 /* Hide dialog elements not in a correct category. Only combinations currently | 676 /* Hide dialog elements not in a correct category. Only combinations currently |
| 681 in use are included here. */ | 677 in use are included here. */ |
| 682 .pod.legacy-supervised .non-sync, | 678 .pod.legacy-supervised .non-sync, |
| 683 .pod.legacy-supervised .action-box-remove-user-warning-text, | 679 .pod.legacy-supervised .action-box-remove-user-warning-text, |
| 684 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, | 680 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, |
| 685 .pod:not(.legacy-supervised) | 681 .pod:not(.legacy-supervised) |
| 686 .action-box-remove-legacy-supervised-user-warning-text, | 682 .action-box-remove-legacy-supervised-user-warning-text, |
| 687 .pod.synced .non-sync, | 683 .pod.synced .non-sync, |
| 688 .pod.has-no-stats .has-stats { | 684 .pod.has-no-stats .has-stats { |
| 689 display: none; | 685 display: none; |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 -webkit-animation: ellipsis-component2 1.5s infinite; | 915 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 920 } | 916 } |
| 921 | 917 |
| 922 @-webkit-keyframes ellipsis-component2 { | 918 @-webkit-keyframes ellipsis-component2 { |
| 923 0% { opacity: 0; } | 919 0% { opacity: 0; } |
| 924 25% { opacity: 0; } | 920 25% { opacity: 0; } |
| 925 50% { opacity: 0; } | 921 50% { opacity: 0; } |
| 926 75% { opacity: 1; } | 922 75% { opacity: 1; } |
| 927 100% { opacity: 0; } | 923 100% { opacity: 0; } |
| 928 } | 924 } |
| OLD | NEW |