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-error-state-portal, | 15 .show-with-error-state-portal, |
16 .show-with-error-state-offline, | 16 .show-with-error-state-offline, |
17 .show-with-error-state-proxy, | 17 .show-with-error-state-proxy, |
18 .show-with-error-state-auth-ext-timeout, | 18 .show-with-error-state-auth-ext-timeout, |
| 19 .show-with-error-state-kiosk-online, |
19 .guest-signin, | 20 .guest-signin, |
20 .offline-login, | 21 .offline-login, |
21 .connecting-indicator { | 22 .connecting-indicator { |
22 display: none; | 23 display: none; |
23 } | 24 } |
24 | 25 |
25 .ui-state-update .show-with-ui-state-update, | 26 .ui-state-update .show-with-ui-state-update, |
26 .ui-state-signin .show-with-ui-state-signin, | 27 .ui-state-signin .show-with-ui-state-signin, |
27 .ui-state-locally-managed .show-with-ui-state-locally-managed, | 28 .ui-state-locally-managed .show-with-ui-state-locally-managed, |
28 .ui-state-kiosk-mode .show-with-ui-state-kiosk-mode, | 29 .ui-state-kiosk-mode .show-with-ui-state-kiosk-mode, |
29 .ui-state-local-state-error .show-with-ui-state-local-state-error, | 30 .ui-state-local-state-error .show-with-ui-state-local-state-error, |
30 .ui-state-auto-enrollment-error .show-with-ui-state-auto-enrollment-error, | 31 .ui-state-auto-enrollment-error .show-with-ui-state-auto-enrollment-error, |
31 .error-state-portal .show-with-error-state-portal, | 32 .error-state-portal .show-with-error-state-portal, |
32 .error-state-offline .show-with-error-state-offline, | 33 .error-state-offline .show-with-error-state-offline, |
33 .error-state-proxy .show-with-error-state-proxy, | 34 .error-state-proxy .show-with-error-state-proxy, |
34 .error-state-auth-ext-timeout .show-with-error-state-auth-ext-timeout, | 35 .error-state-auth-ext-timeout .show-with-error-state-auth-ext-timeout, |
| 36 .error-state-kiosk-online .show-with-error-state-kiosk-online, |
35 .allow-guest-signin .guest-signin, | 37 .allow-guest-signin .guest-signin, |
36 .allow-offline-login .offline-login, | 38 .allow-offline-login .offline-login, |
37 .show-connecting-indicator .connecting-indicator { | 39 .show-connecting-indicator .connecting-indicator { |
38 display: block; | 40 display: block; |
39 } | 41 } |
40 | 42 |
41 #oobe.error-message #step-logo { | 43 #oobe.error-message #step-logo { |
42 z-index: 1; | 44 z-index: 1; |
43 } | 45 } |
44 | 46 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite; | 119 -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite; |
118 } | 120 } |
119 | 121 |
120 #connecting-indicator-ellipsis-2 { | 122 #connecting-indicator-ellipsis-2 { |
121 -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite; | 123 -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite; |
122 } | 124 } |
123 | 125 |
124 #connecting-indicator-ellipsis-3 { | 126 #connecting-indicator-ellipsis-3 { |
125 -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite; | 127 -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite; |
126 } | 128 } |
OLD | NEW |