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 | 5 |
| 6 .account-picker.flying-pods #account-picker { | 6 .account-picker.flying-pods #account-picker { |
| 7 -webkit-transition: width 180ms ease, | 7 margin: 0px; |
| 8 height 180ms ease; | 8 -webkit-transition: margin 500ms ease-in-out; |
|
jdufault
2016/05/31 19:24:51
Can we just use transition instead of -webkit-tran
sammiequon
2016/06/14 22:22:21
Done.
| |
| 9 } | |
| 10 | |
| 11 #account-picker { | |
| 12 -webkit-transition: width 500ms ease-in-out, height 500ms ease-in-out; | |
| 9 } | 13 } |
| 10 | 14 |
| 11 #bubble { | 15 #bubble { |
| 12 z-index: 1; | 16 z-index: 1; |
| 13 } | 17 } |
| 14 | 18 |
| 15 #signin-banner-container1 { | 19 #signin-banner-container1 { |
| 16 bottom: 100%; | 20 bottom: 100%; |
| 17 margin-bottom: 10px; | 21 margin-bottom: 10px; |
| 18 position: absolute; | 22 position: absolute; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 56 display: inline-block; | 60 display: inline-block; |
| 57 opacity: 0; | 61 opacity: 0; |
| 58 visibility: hidden; | 62 visibility: hidden; |
| 59 } | 63 } |
| 60 | 64 |
| 61 html[screen=lock] #signin-banner.message-set { | 65 html[screen=lock] #signin-banner.message-set { |
| 62 -webkit-transition: opacity 1s; | 66 -webkit-transition: opacity 1s; |
| 63 opacity: 1; | 67 opacity: 1; |
| 64 visibility: visible; | 68 visibility: visible; |
| 65 } | 69 } |
| OLD | NEW |