| 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 overflow: visible; | 9 overflow: visible; |
| 10 } | 10 } |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 text-align: end; | 712 text-align: end; |
| 713 } | 713 } |
| 714 | 714 |
| 715 /* Hide dialog elements not in a correct category. Only combinations currently | 715 /* Hide dialog elements not in a correct category. Only combinations currently |
| 716 in use are included here. */ | 716 in use are included here. */ |
| 717 .pod.legacy-supervised .non-sync, | 717 .pod.legacy-supervised .non-sync, |
| 718 .pod.legacy-supervised .action-box-remove-user-warning-text, | 718 .pod.legacy-supervised .action-box-remove-user-warning-text, |
| 719 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, | 719 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, |
| 720 .pod:not(.legacy-supervised) | 720 .pod:not(.legacy-supervised) |
| 721 .action-box-remove-legacy-supervised-user-warning-text, | 721 .action-box-remove-legacy-supervised-user-warning-text, |
| 722 .pod.synced .non-sync, | 722 .pod.synced .non-sync { |
| 723 .pod.has-no-stats .has-stats { | |
| 724 display: none; | 723 display: none; |
| 725 } | 724 } |
| 726 | 725 |
| 727 .user-type-bubble { | 726 .user-type-bubble { |
| 728 background-color: rgba(0, 0, 0, 0.9); | 727 background-color: rgba(0, 0, 0, 0.9); |
| 729 border-radius: 4px; | 728 border-radius: 4px; |
| 730 color: #FFF; | 729 color: #FFF; |
| 731 font-family: "Roboto"; | 730 font-family: "Roboto"; |
| 732 font-size: 13px; | 731 font-size: 13px; |
| 733 left: 36px; | 732 left: 36px; |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 | 1114 |
| 1116 html[dir=rtl] .small-pod.extra-small .small-pod-name { | 1115 html[dir=rtl] .small-pod.extra-small .small-pod-name { |
| 1117 left: auto; | 1116 left: auto; |
| 1118 right: 76px; | 1117 right: 76px; |
| 1119 } | 1118 } |
| 1120 | 1119 |
| 1121 @keyframes switch-image { | 1120 @keyframes switch-image { |
| 1122 from { transform: rotate3d(0, 1, 0, 90deg); } | 1121 from { transform: rotate3d(0, 1, 0, 90deg); } |
| 1123 to { transform: none; } | 1122 to { transform: none; } |
| 1124 } | 1123 } |
| OLD | NEW |