| 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 28 matching lines...) Expand all Loading... |
| 39 position: relative; | 39 position: relative; |
| 40 text-align: center; | 40 text-align: center; |
| 41 } | 41 } |
| 42 | 42 |
| 43 html[dir=rtl] #signin-banner { | 43 html[dir=rtl] #signin-banner { |
| 44 left: auto; | 44 left: auto; |
| 45 right: -50%; | 45 right: -50%; |
| 46 } | 46 } |
| 47 | 47 |
| 48 html[screen=user-adding] #signin-banner { | 48 html[screen=user-adding] #signin-banner { |
| 49 background-color: rgba(0, 0, 0, 0.34); |
| 49 display: inline-block; | 50 display: inline-block; |
| 50 } | 51 } |
| 51 | 52 |
| 53 html[screen=user-adding] #signin-banner, |
| 52 html[screen=login] #signin-banner { | 54 html[screen=login] #signin-banner { |
| 53 padding: 20px 24px; | 55 padding: 20px 24px; |
| 54 } | 56 } |
| 55 | 57 |
| 56 html[screen=login] #signin-banner, | 58 html[screen=login] #signin-banner, |
| 57 html[screen=lock] #signin-banner { | 59 html[screen=lock] #signin-banner { |
| 58 display: inline-block; | 60 display: inline-block; |
| 59 opacity: 0; | 61 opacity: 0; |
| 60 visibility: hidden; | 62 visibility: hidden; |
| 61 } | 63 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 background: linear-gradient(#4FC3F7, transparent); | 95 background: linear-gradient(#4FC3F7, transparent); |
| 94 height: 112px; | 96 height: 112px; |
| 95 position: absolute; | 97 position: absolute; |
| 96 width: 100%; | 98 width: 100%; |
| 97 z-index: 2; | 99 z-index: 2; |
| 98 } | 100 } |
| 99 | 101 |
| 100 .small-pod-container-mask.rotate { | 102 .small-pod-container-mask.rotate { |
| 101 transform: rotate(180deg); | 103 transform: rotate(180deg); |
| 102 } | 104 } |
| OLD | NEW |