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 width: 650px; | 7 width: 650px; |
8 } | 8 } |
9 | 9 |
10 .show-with-ui-state-update, | 10 .show-with-ui-state-update, |
11 .show-with-ui-state-signin, | 11 .show-with-ui-state-signin, |
12 .show-with-ui-state-locally-managed, | 12 .show-with-ui-state-locally-managed, |
13 .show-with-ui-state-kiosk-mode, | 13 .show-with-ui-state-kiosk-mode, |
14 .show-with-ui-state-local-state-error, | 14 .show-with-ui-state-local-state-error, |
15 .show-with-ui-state-auto-enrollment-error, | 15 .show-with-ui-state-auto-enrollment-error, |
16 .show-with-error-state-portal, | 16 .show-with-error-state-portal, |
17 .show-with-error-state-offline, | 17 .show-with-error-state-offline, |
18 .show-with-error-state-proxy, | 18 .show-with-error-state-proxy, |
19 .show-with-error-state-auth-ext-timeout, | 19 .show-with-error-state-auth-ext-timeout, |
| 20 .show-with-error-state-kiosk-online, |
20 .guest-signin, | 21 .guest-signin, |
21 .offline-login, | 22 .offline-login, |
22 .connecting-indicator { | 23 .connecting-indicator { |
23 display: none; | 24 display: none; |
24 } | 25 } |
25 | 26 |
26 .ui-state-update .show-with-ui-state-update, | 27 .ui-state-update .show-with-ui-state-update, |
27 .ui-state-signin .show-with-ui-state-signin, | 28 .ui-state-signin .show-with-ui-state-signin, |
28 .ui-state-locally-managed .show-with-ui-state-locally-managed, | 29 .ui-state-locally-managed .show-with-ui-state-locally-managed, |
29 .ui-state-kiosk-mode .show-with-ui-state-kiosk-mode, | 30 .ui-state-kiosk-mode .show-with-ui-state-kiosk-mode, |
30 .ui-state-local-state-error .show-with-ui-state-local-state-error, | 31 .ui-state-local-state-error .show-with-ui-state-local-state-error, |
31 .ui-state-auto-enrollment-error .show-with-ui-state-auto-enrollment-error, | 32 .ui-state-auto-enrollment-error .show-with-ui-state-auto-enrollment-error, |
32 .error-state-portal .show-with-error-state-portal, | 33 .error-state-portal .show-with-error-state-portal, |
33 .error-state-offline .show-with-error-state-offline, | 34 .error-state-offline .show-with-error-state-offline, |
34 .error-state-proxy .show-with-error-state-proxy, | 35 .error-state-proxy .show-with-error-state-proxy, |
35 .error-state-auth-ext-timeout .show-with-error-state-auth-ext-timeout, | 36 .error-state-auth-ext-timeout .show-with-error-state-auth-ext-timeout, |
| 37 .error-state-kiosk-online .show-with-error-state-kiosk-online, |
36 .allow-guest-signin .guest-signin, | 38 .allow-guest-signin .guest-signin, |
37 .allow-offline-login .offline-login, | 39 .allow-offline-login .offline-login, |
38 .show-connecting-indicator .connecting-indicator { | 40 .show-connecting-indicator .connecting-indicator { |
39 display: block; | 41 display: block; |
40 } | 42 } |
41 | 43 |
42 #oobe.error-message #step-logo { | 44 #oobe.error-message #step-logo { |
43 z-index: 1; | 45 z-index: 1; |
44 } | 46 } |
45 | 47 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite; | 129 -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite; |
128 } | 130 } |
129 | 131 |
130 #connecting-indicator-ellipsis-2 { | 132 #connecting-indicator-ellipsis-2 { |
131 -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite; | 133 -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite; |
132 } | 134 } |
133 | 135 |
134 #connecting-indicator-ellipsis-3 { | 136 #connecting-indicator-ellipsis-3 { |
135 -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite; | 137 -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite; |
136 } | 138 } |
OLD | NEW |