1/* Copyright (c) 2012 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 -webkit-transition: width 180ms ease, 8 height 180ms ease; 9} 10 11#signin-banner-container1 { 12 bottom: 100%; 13 margin-bottom: 10px; 14 position: absolute; 15 width: 100%; 16} 17 18#signin-banner-container2 { 19 display: inline-block; 20 position: relative; 21 right: -50%; 22} 23 24#signin-banner { 25 background-color: rgba(0, 0, 0, 0.75); 26 border-radius: 4px; 27 color: whitesmoke; 28 display: none; 29 font-size: 15px; 30 left: -50%; 31 padding: 20px; 32 position: relative; 33 white-space: nowrap; 34} 35 36html[screen=user-adding] #signin-banner { 37 display: inline-block; 38} 39 40html[screen=lock] #signin-banner { 41 display: inline-block; 42 opacity: 0; 43 visibility: hidden; 44} 45 46html[screen=lock] #signin-banner.message-set { 47 -webkit-transition: opacity 1s; 48 opacity: 1; 49 visibility: visible; 50} 51