OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 .account-picker.flying-pods #account-picker { |
| 7 transition: width 180ms ease, height 180ms ease; |
| 8 } |
| 9 |
| 10 #bubble { |
| 11 z-index: 1; |
| 12 } |
| 13 |
| 14 #signin-banner-container1 { |
| 15 bottom: 100%; |
| 16 margin-bottom: 10px; |
| 17 position: absolute; |
| 18 width: 100%; |
| 19 } |
| 20 |
| 21 html[screen=login] #signin-banner-container1 { |
| 22 margin-bottom: 6px; |
| 23 } |
| 24 |
| 25 #signin-banner-container2 { |
| 26 display: inline-block; |
| 27 position: relative; |
| 28 right: -50%; |
| 29 } |
| 30 |
| 31 html[dir=rtl] #signin-banner-container2 { |
| 32 left: -50%; |
| 33 right: auto; |
| 34 } |
| 35 |
| 36 #signin-banner { |
| 37 background-color: rgba(0, 0, 0, 0.75); |
| 38 border-radius: 4px; |
| 39 color: whitesmoke; |
| 40 display: none; |
| 41 left: -50%; |
| 42 max-width: 722px; |
| 43 padding: 20px; |
| 44 position: relative; |
| 45 text-align: center; |
| 46 width: max-content; |
| 47 } |
| 48 |
| 49 html[dir=rtl] #signin-banner { |
| 50 left: auto; |
| 51 right: -50%; |
| 52 } |
| 53 |
| 54 html[screen=user-adding] #signin-banner { |
| 55 display: inline-block; |
| 56 } |
| 57 |
| 58 html[screen=login] #signin-banner { |
| 59 padding: 20px 24px; |
| 60 } |
| 61 |
| 62 html[screen=login] #signin-banner, |
| 63 html[screen=lock] #signin-banner { |
| 64 display: inline-block; |
| 65 opacity: 0; |
| 66 visibility: hidden; |
| 67 } |
| 68 |
| 69 html[screen=login] #signin-banner.message-set, |
| 70 html[screen=lock] #signin-banner.message-set { |
| 71 opacity: 1; |
| 72 transition: opacity 1s; |
| 73 visibility: visible; |
| 74 } |
OLD | NEW |