| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .request-headers-view { | 7 .request-headers-view { |
| 8 -webkit-user-select: text; | 8 -webkit-user-select: text; |
| 9 overflow: auto; | 9 overflow: auto; |
| 10 } | 10 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 flex: 0 0 19px; | 21 flex: 0 0 19px; |
| 22 padding: 0 4px; | 22 padding: 0 4px; |
| 23 } | 23 } |
| 24 | 24 |
| 25 .request-headers-tree { | 25 .request-headers-tree { |
| 26 padding: 0 0 0 4px; | 26 padding: 0 0 0 4px; |
| 27 flex-grow: 1; | 27 flex-grow: 1; |
| 28 overflow-y: auto; | 28 overflow-y: auto; |
| 29 margin: 0; | 29 margin: 0; |
| 30 } | 30 } |
| 31 |
| 32 .header-decode-error { |
| 33 color: red; |
| 34 } |
| 35 |
| 36 .-theme-with-dark-background .header-decode-error { |
| 37 color: hsl(0, 100%, 65%); |
| 38 } |
| OLD | NEW |