| 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, |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 .allow-offline-login .offline-login, | 40 .allow-offline-login .offline-login, |
| 41 .show-connecting-indicator .connecting-indicator { | 41 .show-connecting-indicator .connecting-indicator { |
| 42 display: block; | 42 display: block; |
| 43 } | 43 } |
| 44 | 44 |
| 45 #oobe.error-message #step-logo { | 45 #oobe.error-message #step-logo { |
| 46 z-index: 1; | 46 z-index: 1; |
| 47 } | 47 } |
| 48 | 48 |
| 49 .error-header { | 49 .error-header { |
| 50 /* A hack used to prevent aliasing on High-DPI displays. */ | |
| 51 -webkit-transform: scale3d(1,1,1); | |
| 52 background-clip: padding-box; | 50 background-clip: padding-box; |
| 53 background-color: white; | 51 background-color: white; |
| 54 border-bottom: 1px solid rgb(238,238,238); | 52 border-bottom: 1px solid rgb(238,238,238); |
| 55 padding: 71px 20px 50px; | 53 padding: 71px 20px 50px; |
| 56 text-align: center; | 54 text-align: center; |
| 55 /* A hack used to prevent aliasing on High-DPI displays. */ |
| 56 transform: scale3d(1,1,1); |
| 57 } | 57 } |
| 58 | 58 |
| 59 .error-icon { | 59 .error-icon { |
| 60 height: 64px; | 60 height: 64px; |
| 61 margin-bottom: 40px; | 61 margin-bottom: 40px; |
| 62 } | 62 } |
| 63 | 63 |
| 64 .error-title { | 64 .error-title { |
| 65 color: #606060; | 65 color: #606060; |
| 66 font-size: 15px; | 66 font-size: 15px; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 } | 140 } |
| 141 | 141 |
| 142 #error-navigation { | 142 #error-navigation { |
| 143 color: rgba(0, 0, 0, .54); | 143 color: rgba(0, 0, 0, .54); |
| 144 left: 0; | 144 left: 0; |
| 145 position: absolute; | 145 position: absolute; |
| 146 right: 0; | 146 right: 0; |
| 147 top: 0; | 147 top: 0; |
| 148 z-index: 1; | 148 z-index: 1; |
| 149 } | 149 } |
| OLD | NEW |