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 {
|
|
|
|
|
display: flex;
|
2023-02-16 16:59:21 +01:00
|
|
|
white-space: nowrap;
|
2021-01-26 20:06:05 +01:00
|
|
|
align-items: center;
|
2021-05-14 01:07:38 +02:00
|
|
|
padding: 0 3px;
|
2021-01-26 20:06:05 +01:00
|
|
|
flex: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-02 22:00:27 +02:00
|
|
|
.network-request-title-status {
|
|
|
|
|
padding: 0 2px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
line-height: 20px;
|
2023-06-07 02:38:44 +02:00
|
|
|
min-width: 30px;
|
|
|
|
|
text-align: center;
|
2021-01-26 20:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-title-status.status-failure {
|
2023-06-02 22:00:27 +02:00
|
|
|
color: var(--vscode-statusBar-foreground);
|
|
|
|
|
background-color: var(--vscode-statusBarItem-errorBackground);
|
2021-01-26 20:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
2023-06-02 22:00:27 +02:00
|
|
|
.network-request-title-status.status-route {
|
|
|
|
|
color: var(--vscode-statusBar-foreground);
|
|
|
|
|
background-color: var(--vscode-statusBar-background);
|
2021-01-26 20:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
2023-06-07 02:38:44 +02:00
|
|
|
.network-request-title-status.status-route.api {
|
|
|
|
|
color: var(--vscode-statusBar-foreground);
|
|
|
|
|
background-color: var(--vscode-statusBarItem-remoteBackground);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-26 20:06:05 +01:00
|
|
|
.network-request-title-url {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-02 22:00:27 +02:00
|
|
|
.network-request-title-content-type {
|
2023-08-25 21:10:28 +02:00
|
|
|
margin: 0 6px;
|
2023-06-02 22:00:27 +02:00
|
|
|
}
|
|
|
|
|
|
2021-01-26 20:06:05 +01:00
|
|
|
.network-request-details {
|
|
|
|
|
width: 100%;
|
2021-05-14 01:07:38 +02:00
|
|
|
user-select: text;
|
2023-02-16 16:59:21 +01:00
|
|
|
line-height: 24px;
|
2023-08-25 21:10:28 +02:00
|
|
|
margin-left: 10px;
|
2021-01-26 20:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-details-url {
|
|
|
|
|
white-space: normal;
|
|
|
|
|
word-wrap: break-word;
|
2023-08-25 21:10:28 +02:00
|
|
|
margin-left: 10px;
|
2021-01-26 20:06:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-request-headers {
|
|
|
|
|
white-space: pre;
|
|
|
|
|
overflow: hidden;
|
2023-08-25 21:10:28 +02:00
|
|
|
margin-left: 10px;
|
2021-01-26 20:06:05 +01:00
|
|
|
}
|
2021-05-14 01:07:38 +02:00
|
|
|
|
|
|
|
|
.network-request-details-header {
|
|
|
|
|
margin: 3px 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2022-07-07 20:26:31 +02:00
|
|
|
|
|
|
|
|
.network-request-details-time {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
2023-08-25 21:10:28 +02:00
|
|
|
|
|
|
|
|
.network-request .cm-wrapper {
|
2023-08-26 04:20:36 +02:00
|
|
|
height: 300px;
|
2023-08-25 21:10:28 +02:00
|
|
|
}
|