Chromium Code Reviews| 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 #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 Loading... | |
| 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 } |
| OLD | NEW |