| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 } | 96 } |
| 97 | 97 |
| 98 .request-headers-view .outline-disclosure .header-value { | 98 .request-headers-view .outline-disclosure .header-value { |
| 99 display: inline; | 99 display: inline; |
| 100 margin-right: 1em; | 100 margin-right: 1em; |
| 101 white-space: pre-wrap; | 101 white-space: pre-wrap; |
| 102 word-break: break-all; | 102 word-break: break-all; |
| 103 margin-top: 1px; | 103 margin-top: 1px; |
| 104 } | 104 } |
| 105 | 105 |
| 106 .request-headers-view .outline-disclosure .empty-request-header { |
| 107 color: rgba(33%, 33%, 33%, 0.5); |
| 108 } |
| 109 |
| 106 .resource-status-image { | 110 .resource-status-image { |
| 107 margin-top: -2px; | 111 margin-top: -2px; |
| 108 margin-right: 3px; | 112 margin-right: 3px; |
| 109 } | 113 } |
| 110 | 114 |
| 111 .request-headers-view .filter-input { | 115 .request-headers-view .filter-input { |
| 112 outline: none !important; | 116 outline: none !important; |
| 113 border: none; | 117 border: none; |
| 114 border-bottom: solid 1px #ccc; | 118 border-bottom: solid 1px #ccc; |
| 115 flex: 0 0 19px; | 119 flex: 0 0 19px; |
| 116 padding: 0 4px; | 120 padding: 0 4px; |
| 117 } | 121 } |
| OLD | NEW |