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

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

Issue 12207077: Refactored error screen logic. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 7 years, 10 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
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 html[oobe=new] #error-message { 6 html[oobe=new] #error-message {
7 min-height: 184px; 7 min-height: 184px;
8 /* Screen has no controls but has padding at the last text message */ 8 /* Screen has no controls but has padding at the last text message */
9 padding: 70px 17px 50px; 9 padding: 70px 17px 50px;
10 width: 688px; 10 width: 688px;
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 26
27 #captive-portal-proxy-message-text { 27 #captive-portal-proxy-message-text {
28 margin-top: 20px; 28 margin-top: 20px;
29 } 29 }
30 30
31 #captive-portal-network-select-text { 31 #captive-portal-network-select-text {
32 margin-top: 20px; 32 margin-top: 20px;
33 } 33 }
34 34
35 .show-with-offline-message,
36 .show-with-captive-portal,
37 .show-with-proxy-error, 35 .show-with-proxy-error,
36 .show-with-captive-portal-error,
37 .show-with-timeout-error,
38 .show-with-offline-error,
38 .guest-signin, 39 .guest-signin,
39 .offline-login { 40 .offline-login {
40 display: none; 41 display: none;
41 } 42 }
42 43
43 .show-offline-message .show-with-offline-message, 44 .show-captive-portal-error .show-with-captive-portal-error,
44 .show-captive-portal .show-with-captive-portal,
45 .show-proxy-error .show-with-proxy-error, 45 .show-proxy-error .show-with-proxy-error,
46 .show-timeout-error .show-with-timeout-error,
47 .show-offline-error .show-with-offline-error,
46 .allow-guest-signin .guest-signin, 48 .allow-guest-signin .guest-signin,
47 .allow-offline-login .offline-login { 49 .allow-offline-login .offline-login {
48 display: block; 50 display: block;
49 } 51 }
50 52
51 .show-captive-portal .dont-show-with-captive-portal { 53 .show-captive-portal-error .dont-show-with-captive-portal-error {
52 display: none; 54 display: none;
53 } 55 }
54 56
55 #error-guest-signin, 57 #error-guest-signin,
56 #error-offline-login { 58 #error-offline-login {
57 -webkit-margin-start: 60px; 59 -webkit-margin-start: 60px;
58 margin-bottom: 21px; 60 margin-bottom: 21px;
59 } 61 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/error_screen_actor.h ('k') | chrome/browser/resources/chromeos/login/screen_error_message.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698