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 #error-message { | 5 #error-message { |
6 width: 650px; | 6 width: 650px; |
7 } | 7 } |
8 | 8 |
9 .show-with-ui-state-update, | 9 .show-with-ui-state-update, |
10 .show-with-ui-state-signin, | 10 .show-with-ui-state-signin, |
11 .show-with-ui-state-supervised, | 11 .show-with-ui-state-supervised, |
12 .show-with-ui-state-kiosk-mode, | 12 .show-with-ui-state-kiosk-mode, |
13 .show-with-ui-state-local-state-error, | 13 .show-with-ui-state-local-state-error, |
14 .show-with-ui-state-auto-enrollment-error, | 14 .show-with-ui-state-auto-enrollment-error, |
15 .show-with-ui-state-rollback-error, | 15 .show-with-ui-state-rollback-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 .show-with-error-state-kiosk-online, |
21 .guest-signin, | 21 .guest-signin, |
22 .offline-login, | |
Greg Levin
2016/08/31 16:52:06
These changes cause "sign in as an existing user"
| |
23 .connecting-indicator { | 22 .connecting-indicator { |
24 display: none; | 23 display: none; |
25 } | 24 } |
26 | 25 |
27 .ui-state-update .show-with-ui-state-update, | 26 .ui-state-update .show-with-ui-state-update, |
28 .ui-state-signin .show-with-ui-state-signin, | 27 .ui-state-signin .show-with-ui-state-signin, |
29 .ui-state-supervised .show-with-ui-state-supervised, | 28 .ui-state-supervised .show-with-ui-state-supervised, |
30 .ui-state-kiosk-mode .show-with-ui-state-kiosk-mode, | 29 .ui-state-kiosk-mode .show-with-ui-state-kiosk-mode, |
31 .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, |
32 .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, |
33 .ui-state-rollback-error .show-with-ui-state-rollback-error, | 32 .ui-state-rollback-error .show-with-ui-state-rollback-error, |
34 .error-state-portal .show-with-error-state-portal, | 33 .error-state-portal .show-with-error-state-portal, |
35 .error-state-offline .show-with-error-state-offline, | 34 .error-state-offline .show-with-error-state-offline, |
36 .error-state-proxy .show-with-error-state-proxy, | 35 .error-state-proxy .show-with-error-state-proxy, |
37 .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, |
38 .error-state-kiosk-online .show-with-error-state-kiosk-online, | 37 .error-state-kiosk-online .show-with-error-state-kiosk-online, |
39 .allow-guest-signin .guest-signin, | 38 .allow-guest-signin .guest-signin, |
40 .allow-offline-login .offline-login, | |
41 .show-connecting-indicator .connecting-indicator { | 39 .show-connecting-indicator .connecting-indicator { |
42 display: block; | 40 display: block; |
43 } | 41 } |
44 | 42 |
45 #oobe.error-message #step-logo { | 43 #oobe.error-message #step-logo { |
46 z-index: 1; | 44 z-index: 1; |
47 } | 45 } |
48 | 46 |
49 .error-header { | 47 .error-header { |
50 /* A hack used to prevent aliasing on High-DPI displays. */ | 48 /* A hack used to prevent aliasing on High-DPI displays. */ |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
140 } | 138 } |
141 | 139 |
142 #error-navigation { | 140 #error-navigation { |
143 color: rgba(0, 0, 0, .54); | 141 color: rgba(0, 0, 0, .54); |
144 left: 0; | 142 left: 0; |
145 position: absolute; | 143 position: absolute; |
146 right: 0; | 144 right: 0; |
147 top: 0; | 145 top: 0; |
148 z-index: 1; | 146 z-index: 1; |
149 } | 147 } |
OLD | NEW |