2021-01-26 20:06:05 +01:00
|
|
|
/*
|
|
|
|
|
Copyright (c) Microsoft Corporation.
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.network-request {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
background: #fdfcfc;
|
|
|
|
|
width: 100%;
|
|
|
|
|
flex: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request.selected,
|
|
|
|
|
.network-request:hover {
|
|
|
|
|
border-color: var(--inactive-focus-ring);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request.selected:focus {
|
|
|
|
|
border-color: var(--orange);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-title {
|
2021-03-11 20:22:59 +01:00
|
|
|
height: 28px;
|
2021-01-26 20:06:05 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-title-status {
|
2021-03-11 20:22:59 +01:00
|
|
|
padding-right: 5px;
|
2021-01-26 20:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-title-status.status-failure {
|
|
|
|
|
background-color: var(--red);
|
|
|
|
|
color: var(--white);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-title-status.status-neutral {
|
|
|
|
|
background-color: var(--white);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-title-url {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-details {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-details-url {
|
|
|
|
|
white-space: normal;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-headers {
|
|
|
|
|
white-space: pre;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-body {
|
|
|
|
|
white-space: pre;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
background-color: var(--network-content-bg);
|
|
|
|
|
border: black 1px solid;
|
|
|
|
|
max-height: 500px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-response-body {
|
|
|
|
|
white-space: pre;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
background-color: var(--network-content-bg);
|
|
|
|
|
border: black 1px solid;
|
|
|
|
|
max-height: 500px;
|
|
|
|
|
}
|