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 transition: width 180ms ease, height 180ms ease; | 7 transition: width 180ms ease, height 180ms ease; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #bubble { | 10 #bubble { |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 29 right: auto; | 29 right: auto; |
| 30 } | 30 } |
| 31 | 31 |
| 32 #signin-banner { | 32 #signin-banner { |
| 33 background-color: rgba(0, 0, 0, 0.75); | 33 background-color: rgba(0, 0, 0, 0.75); |
| 34 border-radius: 4px; | 34 border-radius: 4px; |
| 35 color: #FFF; | 35 color: #FFF; |
| 36 display: none; | 36 display: none; |
| 37 font-family: "Roboto"; | 37 font-family: "Roboto"; |
| 38 font-size: 13px; | 38 font-size: 13px; |
| 39 padding: 20px 24px; | |
| 39 position: relative; | 40 position: relative; |
| 40 text-align: center; | 41 text-align: center; |
| 41 } | 42 } |
| 42 | 43 |
| 43 html[dir=rtl] #signin-banner { | 44 html[dir=rtl] #signin-banner { |
| 44 left: auto; | 45 left: auto; |
| 45 right: -50%; | 46 right: -50%; |
| 46 } | 47 } |
| 47 | 48 |
| 48 html[screen=user-adding] #signin-banner { | 49 html[screen=user-adding] #signin-banner { |
| 49 display: inline-block; | 50 display: inline-block; |
| 50 } | 51 opacity: 0.8; |
|
xiyuan
2017/06/05 16:20:31
Why do we need to change this? This essentially di
Wenzhao (Colin) Zang
2017/06/05 17:33:20
I think there's no opacity animation for user addi
| |
| 51 | |
| 52 html[screen=login] #signin-banner { | |
| 53 padding: 20px 24px; | |
| 54 } | 52 } |
| 55 | 53 |
| 56 html[screen=login] #signin-banner, | 54 html[screen=login] #signin-banner, |
| 57 html[screen=lock] #signin-banner { | 55 html[screen=lock] #signin-banner { |
| 58 display: inline-block; | 56 display: inline-block; |
| 59 opacity: 0; | 57 opacity: 0; |
| 60 visibility: hidden; | 58 visibility: hidden; |
| 61 } | 59 } |
| 62 | 60 |
| 63 html[screen=login] #signin-banner.message-set, | 61 html[screen=login] #signin-banner.message-set, |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 93 background: linear-gradient(#4FC3F7, transparent); | 91 background: linear-gradient(#4FC3F7, transparent); |
| 94 height: 112px; | 92 height: 112px; |
| 95 position: absolute; | 93 position: absolute; |
| 96 width: 100%; | 94 width: 100%; |
| 97 z-index: 2; | 95 z-index: 2; |
| 98 } | 96 } |
| 99 | 97 |
| 100 .small-pod-container-mask.rotate { | 98 .small-pod-container-mask.rotate { |
| 101 transform: rotate(180deg); | 99 transform: rotate(180deg); |
| 102 } | 100 } |
| OLD | NEW |