1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5/******************************************************************************/
6/* Headers Panel */
7
8.headersPanelBox {
9  height: 100%;
10}
11
12.headersPanelBox .netInfoHeadersTable {
13  overflow: auto;
14  height: 100%;
15}
16
17.headersPanelBox .netHeadersGroup {
18  padding: 10px;
19}
20
21.headersPanelBox td {
22  vertical-align: bottom;
23}
24
25.headersPanelBox .netInfoHeadersGroup {
26  color: var(--theme-toolbar-color);
27  margin-bottom: 10px;
28  border-bottom: 1px solid var(--theme-splitter-color);
29  padding-top: 8px;
30  padding-bottom: 4px;
31  font-weight: bold;
32  user-select: none;
33}
34
35.headersPanelBox .netInfoParamValue {
36  word-wrap: break-word;
37}
38
39.headersPanelBox .netInfoParamName {
40  padding: 2px 10px 0 0;
41  font-weight: bold;
42  vertical-align: top;
43  text-align: right;
44  white-space: nowrap;
45}
46
47/******************************************************************************/
48/* Theme colors have been generated/copied from Network Panel's header view */
49
50/* Light Theme */
51.theme-light .netInfoParamName {
52  color: var(--theme-highlight-red);
53}
54
55.theme-light .netInfoParamValue {
56  color: var(--theme-highlight-purple);
57}
58
59/* Dark Theme */
60.theme-dark .netInfoParamName {
61  color: var(--theme-highlight-purple);
62}
63
64.theme-dark .netInfoParamValue {
65  color: var(--theme-highlight-gray);
66}
67