| 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 html[oobe=new] #error-message { | 6 html[oobe=new] #error-message { |
| 7 min-height: 184px; | 7 min-height: 184px; |
| 8 /* Screen has no controls but has padding at the last text message */ | 8 /* Screen has no controls but has padding at the last text message */ |
| 9 padding: 70px 17px 50px; | 9 padding: 70px 17px 50px; |
| 10 width: 688px; | 10 width: 688px; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 #captive-portal-proxy-message-text { | 27 #captive-portal-proxy-message-text { |
| 28 margin-top: 20px; | 28 margin-top: 20px; |
| 29 } | 29 } |
| 30 | 30 |
| 31 #captive-portal-network-select-text { | 31 #captive-portal-network-select-text { |
| 32 margin-top: 20px; | 32 margin-top: 20px; |
| 33 } | 33 } |
| 34 | 34 |
| 35 .show-with-offline-message, | |
| 36 .show-with-captive-portal, | |
| 37 .show-with-proxy-error, | 35 .show-with-proxy-error, |
| 36 .show-with-captive-portal-error, |
| 37 .show-with-timeout-error, |
| 38 .show-with-offline-error, |
| 38 .guest-signin, | 39 .guest-signin, |
| 39 .offline-login { | 40 .offline-login { |
| 40 display: none; | 41 display: none; |
| 41 } | 42 } |
| 42 | 43 |
| 43 .show-offline-message .show-with-offline-message, | 44 .show-captive-portal-error .show-with-captive-portal-error, |
| 44 .show-captive-portal .show-with-captive-portal, | |
| 45 .show-proxy-error .show-with-proxy-error, | 45 .show-proxy-error .show-with-proxy-error, |
| 46 .show-timeout-error .show-with-timeout-error, |
| 47 .show-offline-error .show-with-offline-error, |
| 46 .allow-guest-signin .guest-signin, | 48 .allow-guest-signin .guest-signin, |
| 47 .allow-offline-login .offline-login { | 49 .allow-offline-login .offline-login { |
| 48 display: block; | 50 display: block; |
| 49 } | 51 } |
| 50 | 52 |
| 51 .show-captive-portal .dont-show-with-captive-portal { | 53 .show-captive-portal-error .dont-show-with-captive-portal-error { |
| 52 display: none; | 54 display: none; |
| 53 } | 55 } |
| 54 | 56 |
| 55 #error-guest-signin, | 57 #error-guest-signin, |
| 56 #error-offline-login { | 58 #error-offline-login { |
| 57 -webkit-margin-start: 60px; | 59 -webkit-margin-start: 60px; |
| 58 margin-bottom: 21px; | 60 margin-bottom: 21px; |
| 59 } | 61 } |
| OLD | NEW |