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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 white-space: nowrap; | 164 white-space: nowrap; |
165 } | 165 } |
166 | 166 |
167 .learn-more-container, | 167 .learn-more-container, |
168 .auth-container, | 168 .auth-container, |
169 .password-entry-container, | 169 .password-entry-container, |
170 .signin-button-container { | 170 .signin-button-container { |
171 display: none; | 171 display: none; |
172 } | 172 } |
173 | 173 |
174 .pod[auth-type='offlinePassword'].focused .password-entry-container { | 174 .pod[auth-type='offlinePassword'].focused .password-entry-container, |
| 175 .pod[auth-type='forceOfflinePassword'].focused .password-entry-container { |
175 display: flex; | 176 display: flex; |
176 flex: auto; | 177 flex: auto; |
177 } | 178 } |
178 | 179 |
179 .password-container { | 180 .password-container { |
180 flex: auto; | 181 flex: auto; |
181 } | 182 } |
182 | 183 |
183 .pod input[type='password'] { | 184 .pod input[type='password'] { |
184 background-color: white; | 185 background-color: white; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 } | 220 } |
220 | 221 |
221 .custom-icon { | 222 .custom-icon { |
222 -webkit-margin-end: 0; | 223 -webkit-margin-end: 0; |
223 -webkit-margin-start: auto; | 224 -webkit-margin-start: auto; |
224 background-position: center; | 225 background-position: center; |
225 background-repeat: no-repeat; | 226 background-repeat: no-repeat; |
226 flex: none; | 227 flex: none; |
227 } | 228 } |
228 | 229 |
| 230 .custom-icon.faded { |
| 231 -webkit-transition: opacity 200ms ease-in-out, |
| 232 visibility 200ms ease-in-out; |
| 233 } |
| 234 |
229 .custom-icon-container { | 235 .custom-icon-container { |
230 display: flex; | 236 display: flex; |
231 flex: none; | 237 flex: none; |
232 flex-direction: column; | 238 flex-direction: column; |
233 height: 40px; | 239 height: 40px; |
234 justify-content: center; | 240 justify-content: center; |
235 width: 40px; | 241 width: 40px; |
236 } | 242 } |
237 | 243 |
238 .pod[auth-type='onlineSignIn'] .signin-button-container, | 244 .pod[auth-type='onlineSignIn'] .signin-button-container, |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 top: 4px; | 599 top: 4px; |
594 } | 600 } |
595 | 601 |
596 .pod.public-account.expanded.advanced .language-and-input-container { | 602 .pod.public-account.expanded.advanced .language-and-input-container { |
597 display: none; | 603 display: none; |
598 } | 604 } |
599 | 605 |
600 .enter-button { | 606 .enter-button { |
601 font-size: 14px; | 607 font-size: 14px; |
602 } | 608 } |
OLD | NEW |