| 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-width: 650px; | 7 min-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-error-state-portal, | 13 .show-with-error-state-portal, |
| 13 .show-with-error-state-offline, | 14 .show-with-error-state-offline, |
| 14 .show-with-error-state-proxy, | 15 .show-with-error-state-proxy, |
| 15 .show-with-error-state-auth-ext-timeout, | 16 .show-with-error-state-auth-ext-timeout, |
| 16 .guest-signin, | 17 .guest-signin, |
| 17 .offline-login { | 18 .offline-login { |
| 18 display: none; | 19 display: none; |
| 19 } | 20 } |
| 20 | 21 |
| 21 .ui-state-update .show-with-ui-state-update, | 22 .ui-state-update .show-with-ui-state-update, |
| 22 .ui-state-signin .show-with-ui-state-signin, | 23 .ui-state-signin .show-with-ui-state-signin, |
| 24 .ui-state-locally-managed .show-with-ui-state-locally-managed, |
| 23 .error-state-portal .show-with-error-state-portal, | 25 .error-state-portal .show-with-error-state-portal, |
| 24 .error-state-offline .show-with-error-state-offline, | 26 .error-state-offline .show-with-error-state-offline, |
| 25 .error-state-proxy .show-with-error-state-proxy, | 27 .error-state-proxy .show-with-error-state-proxy, |
| 26 .error-state-auth-ext-timeout .show-with-error-state-auth-ext-timeout, | 28 .error-state-auth-ext-timeout .show-with-error-state-auth-ext-timeout, |
| 27 .allow-guest-signin .guest-signin, | 29 .allow-guest-signin .guest-signin, |
| 28 .allow-offline-login .offline-login { | 30 .allow-offline-login .offline-login { |
| 29 display: block; | 31 display: block; |
| 30 } | 32 } |
| 31 | 33 |
| 32 #oobe.error-message #step-logo { | 34 #oobe.error-message #step-logo { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 74 |
| 73 #offline-network-control { | 75 #offline-network-control { |
| 74 -webkit-align-items: center; | 76 -webkit-align-items: center; |
| 75 display: -webkit-flex; | 77 display: -webkit-flex; |
| 76 } | 78 } |
| 77 | 79 |
| 78 .offline-network-list-label { | 80 .offline-network-list-label { |
| 79 -webkit-margin-end: 10px; | 81 -webkit-margin-end: 10px; |
| 80 } | 82 } |
| 81 | 83 |
| OLD | NEW |