| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 } | 143 } |
| 144 | 144 |
| 145 .pod.focused .name-container { | 145 .pod.focused .name-container { |
| 146 display: none; | 146 display: none; |
| 147 } | 147 } |
| 148 | 148 |
| 149 .pod.focused.multiprofiles-policy-applied .name-container { | 149 .pod.focused.multiprofiles-policy-applied .name-container { |
| 150 display: flex; | 150 display: flex; |
| 151 } | 151 } |
| 152 | 152 |
| 153 .name { | 153 .name-box { |
| 154 color: #565656; | 154 color: #565656; |
| 155 /* This should be 15.6px - the equivalent of 14px at 90% scale. */ | 155 /* This should be 15.6px - the equivalent of 14px at 90% scale. */ |
| 156 flex: auto; | 156 flex: auto; |
| 157 font-size: 16px; | 157 font-size: 16px; |
| 158 margin-top: 12px; | 158 margin-top: 12px; |
| 159 outline: none; | 159 outline: none; |
| 160 padding: 0 6px; |
| 161 } |
| 162 |
| 163 .pod[auth-type='onlineSignIn'] .name-box .reauth-warning { |
| 164 color: #f4b400; |
| 165 display: inline-flex; |
| 166 } |
| 167 |
| 168 .pod .name-box .reauth-warning { |
| 169 display: none; |
| 170 } |
| 171 |
| 172 .name { |
| 160 overflow: hidden; | 173 overflow: hidden; |
| 161 padding: 0 6px; | |
| 162 text-align: center; | 174 text-align: center; |
| 163 text-overflow: ellipsis; | 175 text-overflow: ellipsis; |
| 164 white-space: nowrap; | 176 white-space: nowrap; |
| 165 } | 177 } |
| 166 | 178 |
| 167 .learn-more-container, | 179 .learn-more-container, |
| 168 .auth-container, | 180 .auth-container, |
| 169 .password-entry-container, | 181 .password-entry-container, |
| 170 .signin-button-container { | 182 .signin-button-container { |
| 171 display: none; | 183 display: none; |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 -webkit-animation: ellipsis-component2 1.5s infinite; | 772 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 761 } | 773 } |
| 762 | 774 |
| 763 @-webkit-keyframes ellipsis-component2 { | 775 @-webkit-keyframes ellipsis-component2 { |
| 764 0% { opacity: 0; } | 776 0% { opacity: 0; } |
| 765 25% { opacity: 0; } | 777 25% { opacity: 0; } |
| 766 50% { opacity: 0; } | 778 50% { opacity: 0; } |
| 767 75% { opacity: 1; } | 779 75% { opacity: 1; } |
| 768 100% { opacity: 0; } | 780 100% { opacity: 0; } |
| 769 } | 781 } |
| OLD | NEW |