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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 height: 47px; | 59 height: 47px; |
60 margin: 0 0 40px; | 60 margin: 0 0 40px; |
61 position: relative; | 61 position: relative; |
62 width: 44px; | 62 width: 44px; |
63 } | 63 } |
64 | 64 |
65 #content-top { | 65 #content-top { |
66 margin: 20px; | 66 margin: 20px; |
67 } | 67 } |
68 | 68 |
69 #help-box-outer { | |
70 -webkit-transition: height ease-in 218ms; | |
71 overflow: hidden; | |
72 } | |
73 | |
74 #help-box-inner { | 69 #help-box-inner { |
75 background-color: #f9f9f9; | 70 background-color: #f9f9f9; |
76 border-top: 1px solid #EEE; | 71 border-top: 1px solid #EEE; |
77 color: #444; | 72 color: #444; |
78 padding: 20px; | 73 padding: 20px; |
79 text-align: start; | 74 text-align: start; |
80 } | 75 } |
81 | 76 |
82 #suggestion { | 77 #suggestion { |
83 margin-top: 15px; | 78 margin-top: 15px; |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 position: absolute; | 297 position: absolute; |
303 top: 0; | 298 top: 0; |
304 width: 100vw; | 299 width: 100vw; |
305 z-index: 1; | 300 z-index: 1; |
306 } | 301 } |
307 | 302 |
308 #offline-resources { | 303 #offline-resources { |
309 display: none; | 304 display: none; |
310 } | 305 } |
311 | 306 |
OLD | NEW |