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

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

Issue 2081873008: Changed look of pin keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 4 years, 6 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
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 #pin-container {
jdufault 2016/06/22 18:03:44 Is this css needed? Can some of it be removed if y
sammiequon 2016/06/22 23:05:40 Done.
9 left: 100px;
10 height: 334px;
11 margin: 10px;
12 position: absolute;
13 top: 100px;
14 width:256px;
15 }
16
8 podrow { 17 podrow {
9 /* Temporarily disabled because animation interferes with updating screen's 18 /* Temporarily disabled because animation interferes with updating screen's
10 size. */ 19 size. */
11 height: 100%; 20 height: 100%;
12 overflow: visible; 21 overflow: visible;
13 position: absolute; 22 position: absolute;
14 width: 100%; 23 width: 100%;
15 } 24 }
16 25
17 /* Hide the pod row while images are loading. */ 26 /* Hide the pod row while images are loading. */
(...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 -webkit-animation: ellipsis-component2 1.5s infinite; 839 -webkit-animation: ellipsis-component2 1.5s infinite;
831 } 840 }
832 841
833 @-webkit-keyframes ellipsis-component2 { 842 @-webkit-keyframes ellipsis-component2 {
834 0% { opacity: 0; } 843 0% { opacity: 0; }
835 25% { opacity: 0; } 844 25% { opacity: 0; }
836 50% { opacity: 0; } 845 50% { opacity: 0; }
837 75% { opacity: 1; } 846 75% { opacity: 1; }
838 100% { opacity: 0; } 847 100% { opacity: 0; }
839 } 848 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698