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

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

Issue 2421533002: [Merge to M55] Fix regression showing chrome logo in SAML signin title bar (Closed)
Patch Set: Created 4 years, 2 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
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 {
(...skipping 13 matching lines...) Expand all
24 outline-color: rgb(77, 144, 254); 24 outline-color: rgb(77, 144, 254);
25 } 25 }
26 26
27 #gaia-signin-form-container, 27 #gaia-signin-form-container,
28 #signin-frame { 28 #signin-frame {
29 height: 100%; 29 height: 100%;
30 position: relative; 30 position: relative;
31 width: 100%; 31 width: 100%;
32 } 32 }
33 33
34 .gaia-signin #step-logo {
35 display: none;
36 }
37
38 #signin-frame { 34 #signin-frame {
39 display: block; 35 display: block;
40 opacity: 0; 36 opacity: 0;
41 overflow: hidden; 37 overflow: hidden;
42 transition: opacity 500ms ease-in; 38 transition: opacity 500ms ease-in;
43 } 39 }
44 40
45 #signin-frame.show { 41 #signin-frame.show {
46 opacity: 1; 42 opacity: 1;
47 transition: opacity 500ms ease-out; 43 transition: opacity 500ms ease-out;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 right: 0; 100 right: 0;
105 top: 0; 101 top: 0;
106 z-index: 1; 102 z-index: 1;
107 } 103 }
108 104
109 .loading #gaia-navigation, 105 .loading #gaia-navigation,
110 .full-width #gaia-navigation { 106 .full-width #gaia-navigation {
111 color: rgba(0, 0, 0, .54); 107 color: rgba(0, 0, 0, .54);
112 } 108 }
113 109
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698