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

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

Issue 1058433002: [cros login, new GAIA] New UI for not authorized error (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cl Created 5 years, 8 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 5
6 #gaia-signin { 6 #gaia-signin {
7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */ 7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */
8 padding: 70px 17px 69px; /* Screen has no controls. */ 8 padding: 70px 17px 69px; /* Screen has no controls. */
9 width: 722px; /* Should be the same as #user-image.loading width. */ 9 width: 722px; /* Should be the same as #user-image.loading width. */
10 } 10 }
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 left: 0; 219 left: 0;
220 position: absolute; 220 position: absolute;
221 right: 0; 221 right: 0;
222 text-align: center; 222 text-align: center;
223 top: 50px; 223 top: 50px;
224 } 224 }
225 225
226 #saml-notice-message { 226 #saml-notice-message {
227 margin: 0 auto; 227 margin: 0 auto;
228 } 228 }
229
230 #gaia-whitelist-error {
231 bottom: 0;
232 display: none;
233 left: 0;
234 position: absolute;
235 right: 0;
236 top: 0;
237 }
238
239 .new-gaia-flow #gaia-whitelist-error {
240 display: block;
241 visibility: hidden;
242 }
243
244 .new-gaia-flow .whitelist-error #gaia-whitelist-error {
245 visibility: visible;
246 }
247
248 .new-gaia-flow #gaia-signin.whitelist-error .step-contents {
249 visibility: hidden;
250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698