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

Side by Side Diff: chrome/browser/resources/chromeos/login/screen_gaia_signin.css

Issue 2947263002: ChromeOS: GAIA screen should support API v2. (Closed)
Patch Set: Rebased. Created 3 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/screen_gaia_signin.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 #gaia-signin { 5 #gaia-signin {
6 height: 528px; 6 height: 528px;
7 width: 448px; 7 width: 448px;
8 } 8 }
9 9
10 #gaia-signin.full-width { 10 #gaia-signin.full-width {
11 padding: 44px 0 0; 11 padding: 44px 0 0;
12 width: 562px; 12 width: 562px;
13 } 13 }
14 14
15 #gaia-signin.v2 {
16 height: unset;
17 padding: unset;
18 width: unset;
19 }
20
15 .signin-link { 21 .signin-link {
16 color: rgb(37, 79, 155); 22 color: rgb(37, 79, 155);
17 cursor: pointer; 23 cursor: pointer;
18 text-decoration: none; 24 text-decoration: none;
19 } 25 }
20 26
21 .signin-link:focus { 27 .signin-link:focus {
22 /* Note: May use 1px solid here. */ 28 /* Note: May use 1px solid here. */
23 outline-color: rgb(77, 144, 254); 29 outline-color: rgb(77, 144, 254);
24 transition: outline-color 200ms; 30 transition: outline-color 200ms;
(...skipping 11 matching lines...) Expand all
36 opacity: 0; 42 opacity: 0;
37 overflow: hidden; 43 overflow: hidden;
38 transition: opacity 500ms ease-in; 44 transition: opacity 500ms ease-in;
39 } 45 }
40 46
41 #signin-frame.show { 47 #signin-frame.show {
42 opacity: 1; 48 opacity: 1;
43 transition: opacity 500ms ease-out; 49 transition: opacity 500ms ease-out;
44 } 50 }
45 51
52 #signin-frame-container-v2 #signin-frame {
53 height: 560px;
54 position: static;
55 width: 768px;
56 }
57
46 #gaia-signin .step-contents { 58 #gaia-signin .step-contents {
47 -webkit-box-pack: center; 59 -webkit-box-pack: center;
48 display: -webkit-box; 60 display: -webkit-box;
49 height: 100%; 61 height: 100%;
50 } 62 }
51 63
52 #saml-notice-container { 64 #saml-notice-container {
53 align-items: center; 65 align-items: center;
54 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.17); 66 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.17);
55 display: flex; 67 display: flex;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 right: 0; 112 right: 0;
101 top: 0; 113 top: 0;
102 z-index: 1; 114 z-index: 1;
103 } 115 }
104 116
105 .loading #gaia-navigation, 117 .loading #gaia-navigation,
106 .full-width #gaia-navigation { 118 .full-width #gaia-navigation {
107 color: rgba(0, 0, 0, .54); 119 color: rgba(0, 0, 0, .54);
108 } 120 }
109 121
122 #gaia-signin.v2 #gaia-navigation,
123 #gaia-signin.v2 #gaia-step-contents {
124 display: none;
125 }
126
127 #gaia-signin:not(.v2) #signin-frame-dialog {
128 display: none;
129 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/screen_gaia_signin.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698