Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: chrome/browser/resources/login/screen_account_picker.css

Issue 402403005: Move common account picker/user pod js/css/html out of src/chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge + move Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 -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 html[dir=rtl] #signin-banner-container2 {
25 left: -50%;
26 right: auto;
27 }
28
29 #signin-banner {
30 background-color: rgba(0, 0, 0, 0.75);
31 border-radius: 4px;
32 color: whitesmoke;
33 display: none;
34 font-size: 15px;
35 left: -50%;
36 padding: 20px;
37 position: relative;
38 text-align: center;
39 width: 722px; /* same as gaia-signin width. */
40 }
41
42 html[dir=rtl] #signin-banner {
43 left: auto;
44 right: -50%;
45 }
46
47 html[screen=user-adding] #signin-banner {
48 display: inline-block;
49 }
50
51 html[screen=lock] #signin-banner {
52 display: inline-block;
53 opacity: 0;
54 visibility: hidden;
55 }
56
57 html[screen=lock] #signin-banner.message-set {
58 -webkit-transition: opacity 1s;
59 opacity: 1;
60 visibility: visible;
61 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/login/screen.js ('k') | chrome/browser/resources/login/screen_account_picker.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698