2021-01-08 01:15:34 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-08-30 07:20:28 +02:00
|
|
|
.network-request-status .status-failure {
|
|
|
|
|
color: var(--vscode-statusBar-foreground);
|
|
|
|
|
background-color: var(--vscode-statusBarItem-errorBackground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-status .status-route {
|
|
|
|
|
color: var(--vscode-statusBar-foreground);
|
|
|
|
|
background-color: var(--vscode-statusBar-background);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-status .status-route.api {
|
|
|
|
|
color: var(--vscode-statusBar-foreground);
|
|
|
|
|
background-color: var(--vscode-statusBarItem-remoteBackground);
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-11 00:28:33 +01:00
|
|
|
.network-request-column {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
flex: 0.5;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 21:40:46 +02:00
|
|
|
.network-request-start {
|
|
|
|
|
flex: 0 0 65px;
|
|
|
|
|
justify-content: right;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 07:20:28 +02:00
|
|
|
.network-request-status {
|
2024-01-11 00:28:33 +01:00
|
|
|
flex: 0 0 75px;
|
2023-08-30 07:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-method {
|
2023-08-30 21:40:46 +02:00
|
|
|
flex: 0 0 65px;
|
2023-08-30 07:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-file {
|
2021-01-08 01:15:34 +01:00
|
|
|
display: flex;
|
2023-08-30 07:20:28 +02:00
|
|
|
flex: 1;
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
2023-08-30 07:20:28 +02:00
|
|
|
.network-request-file-url {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
flex: 1;
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
2023-08-25 21:10:28 +02:00
|
|
|
|
2024-01-11 00:28:33 +01:00
|
|
|
.network-request-body .network-request-start,
|
|
|
|
|
.network-request-body .network-request-status,
|
|
|
|
|
.network-request-body .network-request-duration,
|
|
|
|
|
.network-request-body .network-request-size {
|
|
|
|
|
justify-content: end;
|
2023-08-30 07:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-header {
|
2024-01-11 00:28:33 +01:00
|
|
|
margin: 3px 14px 0 5px;
|
2023-09-15 18:16:29 +02:00
|
|
|
height: 30px;
|
2023-08-30 07:20:28 +02:00
|
|
|
border-bottom: 1px solid var(--vscode-panel-border);
|
|
|
|
|
flex: none;
|
|
|
|
|
align-items: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-header .codicon-triangle-up {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.network-request-header .codicon-triangle-down {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-header > div {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
white-space: nowrap;
|
2023-08-30 21:40:46 +02:00
|
|
|
height: 100%;
|
2023-08-31 00:48:51 +02:00
|
|
|
overflow: hidden;
|
2024-01-11 00:28:33 +01:00
|
|
|
padding: 0 5px;
|
|
|
|
|
justify-content: space-between;
|
2023-08-30 21:40:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 00:28:33 +01:00
|
|
|
.network-request-header > .filter-positive .codicon-triangle-down {
|
2023-08-30 21:40:46 +02:00
|
|
|
display: initial !important;
|
2023-08-30 07:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 00:28:33 +01:00
|
|
|
.network-request-header > .filter-negative .codicon-triangle-up {
|
2023-08-30 07:20:28 +02:00
|
|
|
display: initial !important;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-11 00:28:33 +01:00
|
|
|
.network-request-header .network-request-column {
|
|
|
|
|
border-right: 1px solid var(--vscode-panel-border);
|
2023-08-30 07:20:28 +02:00
|
|
|
}
|