| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 } | 65 } |
| 66 | 66 |
| 67 .error-code { | 67 .error-code { |
| 68 display: block; | 68 display: block; |
| 69 } | 69 } |
| 70 | 70 |
| 71 #content-top { | 71 #content-top { |
| 72 margin: 20px; | 72 margin: 20px; |
| 73 } | 73 } |
| 74 | 74 |
| 75 .gray-button { |
| 76 background: #d9d9d9; |
| 77 color: #696969; |
| 78 } |
| 79 |
| 75 #help-box-inner { | 80 #help-box-inner { |
| 76 background-color: #f9f9f9; | 81 background-color: #f9f9f9; |
| 77 border-top: 1px solid #EEE; | 82 border-top: 1px solid #EEE; |
| 78 color: #444; | 83 color: #444; |
| 79 padding: 20px; | 84 padding: 20px; |
| 80 text-align: start; | 85 text-align: start; |
| 81 } | 86 } |
| 82 | 87 |
| 83 .hidden { | 88 .hidden { |
| 84 display: none; | 89 display: none; |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 .interstitial-wrapper { | 450 .interstitial-wrapper { |
| 446 overflow: inherit; | 451 overflow: inherit; |
| 447 padding: 0 8px; | 452 padding: 0 8px; |
| 448 } | 453 } |
| 449 } | 454 } |
| 450 | 455 |
| 451 @media (max-width: 120px) { | 456 @media (max-width: 120px) { |
| 452 button { | 457 button { |
| 453 width: auto; | 458 width: auto; |
| 454 } | 459 } |
| 455 } | 460 } |
| OLD | NEW |