| 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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 position: absolute; | 630 position: absolute; |
| 631 z-index: 6; | 631 z-index: 6; |
| 632 } | 632 } |
| 633 | 633 |
| 634 .action-box-area.active ~ .action-box-menu { | 634 .action-box-area.active ~ .action-box-menu { |
| 635 background-color: rgba(0, 0, 0, 0.8); | 635 background-color: rgba(0, 0, 0, 0.8); |
| 636 border-radius: 2px; | 636 border-radius: 2px; |
| 637 display: flex; | 637 display: flex; |
| 638 flex-direction: column; | 638 flex-direction: column; |
| 639 font-size: 13px; | 639 font-size: 13px; |
| 640 margin: 3px 0 0 12px; | 640 margin: 10px 0 0 12px; |
| 641 width: 220px; | 641 width: 220px; |
| 642 } | 642 } |
| 643 | 643 |
| 644 .action-box-area.active ~ .action-box-menu.left-edge-offset { | 644 .action-box-area.active ~ .action-box-menu.left-edge-offset { |
| 645 left: 0 !important; | 645 left: 0 !important; |
| 646 } | 646 } |
| 647 | 647 |
| 648 .action-box-area.active ~ .action-box-menu.right-edge-offset { | 648 .action-box-area.active ~ .action-box-menu.right-edge-offset { |
| 649 right: 0 !important; | 649 right: 0 !important; |
| 650 } | 650 } |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 .small-pod.extra-small .small-pod-name { | 1128 .small-pod.extra-small .small-pod-name { |
| 1129 left: 76px; | 1129 left: 76px; |
| 1130 padding: 16px 0; | 1130 padding: 16px 0; |
| 1131 width: 190px; | 1131 width: 190px; |
| 1132 } | 1132 } |
| 1133 | 1133 |
| 1134 @keyframes switch-image { | 1134 @keyframes switch-image { |
| 1135 from { transform: rotate3d(0, 1, 0, 90deg); } | 1135 from { transform: rotate3d(0, 1, 0, 90deg); } |
| 1136 to { transform: none; } | 1136 to { transform: none; } |
| 1137 } | 1137 } |
| OLD | NEW |