| 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 14 matching lines...) Expand all Loading... |
| 25 -webkit-tap-highlight-color: transparent; | 25 -webkit-tap-highlight-color: transparent; |
| 26 border-radius: 2px; | 26 border-radius: 2px; |
| 27 cursor: pointer; | 27 cursor: pointer; |
| 28 opacity: 0.64; | 28 opacity: 0.64; |
| 29 outline: none; | 29 outline: none; |
| 30 position: absolute; | 30 position: absolute; |
| 31 z-index: 0; | 31 z-index: 0; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .account-picker.flying-pods .pod { | 34 .account-picker.flying-pods .pod { |
| 35 transition: all 300ms; | 35 transition: all 180ms; |
| 36 } | |
| 37 | |
| 38 .pod.pin-enabled { | |
| 39 height: 417px; | |
| 40 top: -87px !important; | |
| 41 } | 36 } |
| 42 | 37 |
| 43 .pod .pin-container { | 38 .pod .pin-container { |
| 44 left: 36px; | 39 left: 36px; |
| 45 position: absolute; | 40 position: absolute; |
| 46 top: 300px; | 41 top: 300px; |
| 47 width: 234px; | 42 width: 234px; |
| 48 z-index: 3; | 43 z-index: 3; |
| 49 } | 44 } |
| 50 | 45 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 } | 89 } |
| 95 | 90 |
| 96 .user-image { | 91 .user-image { |
| 97 border-radius: 50%; | 92 border-radius: 50%; |
| 98 box-shadow: 0 0 2px rgba(255, 255, 255, .34); | 93 box-shadow: 0 0 2px rgba(255, 255, 255, .34); |
| 99 height: 100%; | 94 height: 100%; |
| 100 width: 100%; | 95 width: 100%; |
| 101 } | 96 } |
| 102 | 97 |
| 103 .user-image.switch-image-animation { | 98 .user-image.switch-image-animation { |
| 104 animation: switch-image 300ms; | 99 animation: switch-image 180ms; |
| 105 } | 100 } |
| 106 | 101 |
| 107 .pod .user-image { | 102 .pod .user-image { |
| 108 flex: none; | 103 flex: none; |
| 109 } | 104 } |
| 110 | 105 |
| 111 .pod .badge-container { | 106 .pod .badge-container { |
| 112 background: #FFF; | 107 background: #FFF; |
| 113 border-radius: 50%; | 108 border-radius: 50%; |
| 114 bottom: 0; | 109 bottom: 0; |
| (...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1074 50% { opacity: 0; } | 1069 50% { opacity: 0; } |
| 1075 75% { opacity: 1; } | 1070 75% { opacity: 1; } |
| 1076 100% { opacity: 0; } | 1071 100% { opacity: 0; } |
| 1077 } | 1072 } |
| 1078 | 1073 |
| 1079 .large-pod { | 1074 .large-pod { |
| 1080 height: 346px; | 1075 height: 346px; |
| 1081 width: 306px; | 1076 width: 306px; |
| 1082 } | 1077 } |
| 1083 | 1078 |
| 1079 .pod.pin-enabled .large-pod { |
| 1080 height: 618px; |
| 1081 } |
| 1082 |
| 1084 .small-pod { | 1083 .small-pod { |
| 1085 height: 74px; | 1084 height: 74px; |
| 1086 width: 304px; | 1085 width: 304px; |
| 1087 } | 1086 } |
| 1088 | 1087 |
| 1089 .small-pod.extra-small { | 1088 .small-pod.extra-small { |
| 1090 height: 60px; | 1089 height: 60px; |
| 1091 width: 282px; | 1090 width: 282px; |
| 1092 } | 1091 } |
| 1093 | 1092 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 .small-pod.extra-small .small-pod-name { | 1128 .small-pod.extra-small .small-pod-name { |
| 1130 left: 76px; | 1129 left: 76px; |
| 1131 padding: 16px 0; | 1130 padding: 16px 0; |
| 1132 width: 190px; | 1131 width: 190px; |
| 1133 } | 1132 } |
| 1134 | 1133 |
| 1135 @keyframes switch-image { | 1134 @keyframes switch-image { |
| 1136 from { transform: rotate3d(0, 1, 0, 90deg); } | 1135 from { transform: rotate3d(0, 1, 0, 90deg); } |
| 1137 to { transform: none; } | 1136 to { transform: none; } |
| 1138 } | 1137 } |
| OLD | NEW |