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 17 matching lines...) Expand all Loading... |
28 position: static; | 28 position: static; |
29 width: 9px; | 29 width: 9px; |
30 height: 9px; | 30 height: 9px; |
31 -webkit-mask-position: -4px -98px; | 31 -webkit-mask-position: -4px -98px; |
32 } | 32 } |
33 | 33 |
34 .request-headers-view .outline-disclosure li.parent.expanded::before { | 34 .request-headers-view .outline-disclosure li.parent.expanded::before { |
35 -webkit-mask-position: -20px -98px; | 35 -webkit-mask-position: -20px -98px; |
36 } | 36 } |
37 | 37 |
| 38 .request-headers-view .properties-tree li.parent { |
| 39 margin-left: -1px; |
| 40 } |
38 .request-headers-view .outline-disclosure .children li { | 41 .request-headers-view .outline-disclosure .children li { |
39 white-space: nowrap; | 42 white-space: nowrap; |
40 } | 43 } |
41 | 44 |
42 .request-headers-view .outline-disclosure .caution { | 45 .request-headers-view .outline-disclosure .caution { |
43 margin-left: 4px; | 46 margin-left: 4px; |
44 display: inline-block; | 47 display: inline-block; |
45 font-weight: bold; | 48 font-weight: bold; |
46 } | 49 } |
47 | 50 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 white-space: pre-wrap; | 87 white-space: pre-wrap; |
85 word-break: break-all; | 88 word-break: break-all; |
86 margin-top: 1px; | 89 margin-top: 1px; |
87 } | 90 } |
88 | 91 |
89 .resource-status-image { | 92 .resource-status-image { |
90 margin-top: -2px; | 93 margin-top: -2px; |
91 margin-right: 3px; | 94 margin-right: 3px; |
92 vertical-align: middle; | 95 vertical-align: middle; |
93 } | 96 } |
| 97 |
| 98 .request-headers-view .section { |
| 99 margin-left: -16px; |
| 100 } |
| 101 |
| 102 .request-headers-view .section.expanded .properties { |
| 103 -webkit-padding-start: 0; |
| 104 } |
OLD | NEW |