| 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 #extension-error-overlay { | 5 #extension-error-overlay { |
| 6 max-width: 100%; | 6 max-width: 100%; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #extension-error-overlay .content-area { | 9 #extension-error-overlay .content-area { |
| 10 display: flex; | 10 display: flex; |
| 11 flex-direction: column; | 11 flex-direction: column; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #extension-error-overlay .extension-error-list { | 14 #extension-error-overlay .extension-error-list { |
| 15 border: 1px solid #ccc; | 15 border: 1px solid #ccc; |
| 16 margin-bottom: 3px; | 16 margin-bottom: 3px; |
| 17 min-height: 48px; |
| 17 overflow-y: auto; | 18 overflow-y: auto; |
| 18 } | 19 } |
| 19 | 20 |
| 20 .extension-error-overlay-runtime-content { | 21 .extension-error-overlay-runtime-content { |
| 21 flex: none; | 22 flex: none; |
| 22 } | 23 } |
| 23 | 24 |
| 24 #extension-error-overlay .extension-code-highlighted-source { | 25 #extension-error-overlay .extension-code-highlighted-source { |
| 25 background-color: rgba(255, 195, 200, 255); | 26 background-color: rgba(255, 195, 200, 255); |
| 26 } | 27 } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 padding-top: 6px; | 63 padding-top: 6px; |
| 63 } | 64 } |
| 64 | 65 |
| 65 .extension-error-overlay-stack-trace-list li:hover { | 66 .extension-error-overlay-stack-trace-list li:hover { |
| 66 background-color: #eee; | 67 background-color: #eee; |
| 67 } | 68 } |
| 68 | 69 |
| 69 .extension-error-overlay-stack-trace-list li.extension-error-active { | 70 .extension-error-overlay-stack-trace-list li.extension-error-active { |
| 70 background-color: rgba(0, 100, 255, 0.1); | 71 background-color: rgba(0, 100, 255, 0.1); |
| 71 } | 72 } |
| OLD | NEW |