OLD | NEW |
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 #error-message { | 6 #error-message { |
7 min-height: 184px; | 7 min-width: 650px; |
8 /* Screen has no controls but has padding at the last text message */ | |
9 padding: 70px 17px 50px; | |
10 width: 688px; | |
11 } | |
12 | |
13 #error-message-screen-title { | |
14 -webkit-margin-end: 60px; | |
15 -webkit-margin-start: 60px; | |
16 display: block; | |
17 font-weight: bold; | |
18 margin-bottom: 20px; | |
19 } | |
20 | |
21 #error-message-body { | |
22 -webkit-margin-end: 60px; | |
23 -webkit-margin-start: 60px; | |
24 display: block; | |
25 } | |
26 | |
27 #captive-portal-proxy-message-text { | |
28 margin-top: 20px; | |
29 } | |
30 | |
31 #captive-portal-network-select-text { | |
32 margin-top: 20px; | |
33 } | 8 } |
34 | 9 |
35 .show-with-proxy-error, | 10 .show-with-proxy-error, |
36 .show-with-captive-portal-error, | 11 .show-with-captive-portal-error, |
37 .show-with-timeout-error, | 12 .show-with-timeout-error, |
38 .show-with-offline-error, | 13 .show-with-offline-error, |
39 .guest-signin, | 14 .guest-signin, |
40 .offline-login { | 15 .offline-login { |
41 display: none; | 16 display: none; |
42 } | 17 } |
43 | 18 |
44 .show-captive-portal-error .show-with-captive-portal-error, | 19 .show-captive-portal-error .show-with-captive-portal-error, |
45 .show-proxy-error .show-with-proxy-error, | 20 .show-proxy-error .show-with-proxy-error, |
46 .show-timeout-error .show-with-timeout-error, | 21 .show-timeout-error .show-with-timeout-error, |
47 .show-offline-error .show-with-offline-error, | 22 .show-offline-error .show-with-offline-error, |
48 .allow-guest-signin .guest-signin, | 23 .allow-guest-signin .guest-signin, |
49 .allow-offline-login .offline-login { | 24 .allow-offline-login .offline-login { |
50 display: block; | 25 display: block; |
51 } | 26 } |
52 | 27 |
53 .show-captive-portal-error .dont-show-with-captive-portal-error { | 28 #oobe.error-message #step-logo { |
54 display: none; | 29 z-index: 1; |
55 } | 30 } |
56 | 31 |
57 #error-guest-signin, | 32 .error-header { |
58 #error-offline-login { | 33 background: -webkit-linear-gradient(rgba(255,255,255,0.99), |
59 -webkit-margin-start: 60px; | 34 rgba(255,255,255,0.97)); |
60 margin-bottom: 21px; | 35 border-bottom: 1px solid #eee; |
| 36 padding: 71px 20px 50px; |
| 37 text-align: center; |
61 } | 38 } |
| 39 |
| 40 .error-icon { |
| 41 -webkit-margin-after: 40px; |
| 42 } |
| 43 |
| 44 .error-title { |
| 45 color: #606060; |
| 46 font-size: 15px; |
| 47 } |
| 48 |
| 49 .error-body { |
| 50 background: -webkit-linear-gradient(rgba(255,255,255,0.97), |
| 51 rgba(255,255,255,0.95)); |
| 52 padding: 20px 20px 20px; |
| 53 } |
| 54 |
| 55 .error-message-paragraph { |
| 56 font-size: 12px; |
| 57 line-height: 18px; |
| 58 } |
| 59 |
| 60 .error-message-paragraph { |
| 61 -webkit-margin-before: 20px; |
| 62 } |
| 63 |
| 64 .error-message-paragraph a { |
| 65 color: rgb(17,85,204); |
| 66 text-decoration: none; |
| 67 } |
| 68 |
| 69 #offline-network-control { |
| 70 -webkit-align-items: center; |
| 71 display: -webkit-flex; |
| 72 } |
| 73 |
| 74 .offline-network-list-label { |
| 75 -webkit-margin-end: 10px; |
| 76 } |
| 77 |
OLD | NEW |