Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / chromeos / login / screen_error_message.css
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
3  * found in the LICENSE file.
4  */
5
6 #error-message {
7   width: 650px;
8 }
9
10 .show-with-ui-state-update,
11 .show-with-ui-state-signin,
12 .show-with-ui-state-locally-managed,
13 .show-with-ui-state-kiosk-mode,
14 .show-with-ui-state-local-state-error,
15 .show-with-error-state-portal,
16 .show-with-error-state-offline,
17 .show-with-error-state-proxy,
18 .show-with-error-state-auth-ext-timeout,
19 .guest-signin,
20 .offline-login {
21   display: none;
22 }
23
24 .ui-state-update .show-with-ui-state-update,
25 .ui-state-signin .show-with-ui-state-signin,
26 .ui-state-locally-managed .show-with-ui-state-locally-managed,
27 .ui-state-kiosk-mode .show-with-ui-state-kiosk-mode,
28 .ui-state-local-state-error .show-with-ui-state-local-state-error,
29 .error-state-portal .show-with-error-state-portal,
30 .error-state-offline .show-with-error-state-offline,
31 .error-state-proxy .show-with-error-state-proxy,
32 .error-state-auth-ext-timeout .show-with-error-state-auth-ext-timeout,
33 .allow-guest-signin .guest-signin,
34 .allow-offline-login .offline-login {
35   display: block;
36 }
37
38 #oobe.error-message #step-logo {
39   z-index: 1;
40 }
41
42 .error-header {
43   /* A hack used to prevent aliasing on High-DPI displays. */
44   -webkit-transform: scale3d(1,1,1);
45   background-clip: padding-box;
46   background-image: -webkit-linear-gradient(rgba(255,255,255,0.99),
47                                             rgba(255,255,255,0.97));
48   border-bottom: 1px solid rgba(238,238,238,0.97);
49   padding: 71px 20px 50px;
50   text-align: center;
51 }
52
53 .error-icon {
54   -webkit-margin-after: 40px;
55 }
56
57 .error-title {
58   color: #606060;
59   font-size: 15px;
60 }
61
62 .error-body {
63   background-image: -webkit-linear-gradient(rgba(249,249,249,0.97),
64                                             rgba(249,249,249,0.95));
65   padding: 20px 20px 20px;
66 }
67
68 .error-controls {
69   background-image: -webkit-linear-gradient(rgba(249,249,249,0.95),
70                                             rgba(249,249,249,0.93));
71   padding: 20px 20px 20px;
72 }
73
74 .error-message-paragraph {
75   font-size: 12px;
76   line-height: 18px;
77 }
78
79 .error-message-paragraph {
80   -webkit-margin-before: 20px;
81 }
82
83 .error-message-paragraph a {
84   color: rgb(17,85,204);
85   text-decoration: none;
86 }
87
88 #offline-network-control {
89   -webkit-align-items: center;
90   display: -webkit-flex;
91 }
92
93 .offline-network-list-label {
94   -webkit-margin-end: 10px;
95 }
96
97 .button-spacer {
98   -webkit-box-flex: 1;
99 }