Source code

Revision control

Copy as Markdown

Other Tools

/* 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/. */
/* Network panel components & styles */
/* General */
* {
box-sizing: border-box;
}
html,
body,
#mount,
.launchpad-root,
.network-monitor,
.monitor-panel {
flex: initial;
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
.split-box {
overflow: hidden;
}
/* Drag and drop HAR files */
.network-monitor > div {
height: 100%;
}
.network-monitor .dropHarFiles {
display: none;
align-items: center;
justify-content: center;
position: absolute;
text-align: center;
inset: 25px;
z-index: 100;
font-size: 3.5rem;
color: gray;
border: 4px dashed gray;
pointer-events: none;
}
.network-monitor > div[dragging="true"] .dropHarFiles {
display: flex;
}
.network-monitor > div[dragging="true"] {
filter: opacity(50%);
}