mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 23:18:46 +00:00
d388e478a0
Vim control lines were re-introduced or not entirely cleaned up. This nukes them again. Removing from the rest of js, caps, chrome, config, devtools, docshell, image, intl. More to come.
78 lines
1.7 KiB
CSS
78 lines
1.7 KiB
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/******************************************************************************/
|
|
/* Headers Panel */
|
|
|
|
.headersPanelBox {
|
|
height: 100%;
|
|
}
|
|
|
|
.headersPanelBox .netInfoHeadersTable {
|
|
overflow: auto;
|
|
height: 100%;
|
|
}
|
|
|
|
.headersPanelBox .netHeadersGroup {
|
|
padding: 10px;
|
|
}
|
|
|
|
.headersPanelBox td {
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.headersPanelBox .netInfoHeadersGroup {
|
|
color: var(--theme-body-color-alt);
|
|
margin-bottom: 10px;
|
|
border-bottom: 1px solid var(--theme-splitter-color);
|
|
padding-top: 8px;
|
|
padding-bottom: 4px;
|
|
font-weight: bold;
|
|
-moz-user-select: none;
|
|
}
|
|
|
|
.headersPanelBox .netInfoParamValue {
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.headersPanelBox .netInfoParamName {
|
|
padding: 2px 10px 0 0;
|
|
font-weight: bold;
|
|
vertical-align: top;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
/* Theme colors have been generated/copied from Network Panel's header view */
|
|
|
|
/* Light Theme */
|
|
.theme-light .netInfoParamName {
|
|
color: var(--theme-highlight-red);
|
|
}
|
|
|
|
.theme-light .netInfoParamValue {
|
|
color: var(--theme-highlight-purple);
|
|
}
|
|
|
|
/* Dark Theme */
|
|
.theme-dark .netInfoParamName {
|
|
color: var(--theme-highlight-purple);
|
|
}
|
|
|
|
.theme-dark .netInfoParamValue {
|
|
color: var(--theme-highlight-gray);
|
|
}
|
|
|
|
/* Firebug Theme */
|
|
.theme-firebug .netInfoHeadersTable {
|
|
font-family: Lucida Grande, Tahoma, sans-serif;
|
|
font-size: 11px;
|
|
line-height: 12px;
|
|
}
|
|
|
|
.theme-firebug .netInfoParamValue {
|
|
font-family: var(--monospace-font-family);
|
|
}
|