| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 /* Don't use the main frame div when the error is in a subframe. */ | 5 /* Don't use the main frame div when the error is in a subframe. */ |
| 6 html[subframe] #main-frame-error { | 6 html[subframe] #main-frame-error { |
| 7 display: none; | 7 display: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 /* Don't use the subframe error div when the error is in a main frame. */ | 10 /* Don't use the subframe error div when the error is in a main frame. */ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 url(../../../../components/resources/default_200_percent/neterror/error_ne
twork_generic.png) 2x); | 42 url(../../../../components/resources/default_200_percent/neterror/error_ne
twork_generic.png) 2x); |
| 43 } | 43 } |
| 44 | 44 |
| 45 .icon-offline { | 45 .icon-offline { |
| 46 content: -webkit-image-set( | 46 content: -webkit-image-set( |
| 47 url(../../../../components/neterror/resources/default_100_percent/offline/
100-error-offline.png) 1x, | 47 url(../../../../components/neterror/resources/default_100_percent/offline/
100-error-offline.png) 1x, |
| 48 url(../../../../components/neterror/resources/default_200_percent/offline/
200-error-offline.png) 2x); | 48 url(../../../../components/neterror/resources/default_200_percent/offline/
200-error-offline.png) 2x); |
| 49 } | 49 } |
| 50 | 50 |
| 51 #help-box-outer { | 51 #help-box-outer { |
| 52 -webkit-transition: height ease-in 218ms; | |
| 53 overflow: hidden; | 52 overflow: hidden; |
| 53 transition: height ease-in 218ms; |
| 54 } | 54 } |
| 55 | 55 |
| 56 #help-box-inner { | 56 #help-box-inner { |
| 57 background-color: #f9f9f9; | 57 background-color: #f9f9f9; |
| 58 border-top: 1px solid #EEE; | 58 border-top: 1px solid #EEE; |
| 59 color: #444; | 59 color: #444; |
| 60 padding: 25px 20px; | 60 padding: 25px 20px; |
| 61 text-align: start; | 61 text-align: start; |
| 62 } | 62 } |
| 63 | 63 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 left: 0; | 202 left: 0; |
| 203 position: absolute; | 203 position: absolute; |
| 204 top: 0; | 204 top: 0; |
| 205 width: 100vw; | 205 width: 100vw; |
| 206 z-index: 1; | 206 z-index: 1; |
| 207 } | 207 } |
| 208 | 208 |
| 209 #offline-resources { | 209 #offline-resources { |
| 210 display: none; | 210 display: none; |
| 211 } | 211 } |
| OLD | NEW |