Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: ui/login/account_picker/user_pod_row.css

Issue 2132753002: When pin-keyboard comes up the input element is of focus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Rebased. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 178
179 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { 179 .pod.focused:not(.multiprofiles-policy-applied) .auth-container {
180 background-color: white; 180 background-color: white;
181 position: absolute; 181 position: absolute;
182 top: 160px; 182 top: 160px;
183 width: 160px; 183 width: 160px;
184 } 184 }
185 185
186 .auth-container.pin-disabled { 186 .auth-container.pin-disabled {
187 opacity: 1; 187 opacity: 1;
188 transition: opacity 200ms ease-in-out 180ms, 188 transition: opacity 200ms ease-in-out 180ms;
189 visibility 200ms ease-in-out 180ms;
190 visibility: visible; 189 visibility: visible;
191 } 190 }
192 191
193 .auth-container.pin-enabled { 192 .auth-container.pin-enabled {
194 opacity: 0; 193 opacity: 0;
195 transition: none; 194 transition: none;
196 visibility: hidden; 195 visibility: hidden;
197 } 196 }
198 197
199 .name-container { 198 .name-container {
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 -webkit-animation: ellipsis-component2 1.5s infinite; 887 -webkit-animation: ellipsis-component2 1.5s infinite;
889 } 888 }
890 889
891 @-webkit-keyframes ellipsis-component2 { 890 @-webkit-keyframes ellipsis-component2 {
892 0% { opacity: 0; } 891 0% { opacity: 0; }
893 25% { opacity: 0; } 892 25% { opacity: 0; }
894 50% { opacity: 0; } 893 50% { opacity: 0; }
895 75% { opacity: 1; } 894 75% { opacity: 1; }
896 100% { opacity: 0; } 895 100% { opacity: 0; }
897 } 896 }
OLDNEW
« no previous file with comments | « no previous file | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698