103 lines
2 KiB
CSS
103 lines
2 KiB
CSS
/*
|
|
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.
|
|
*/
|
|
|
|
.call-log {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: auto;
|
|
line-height: 20px;
|
|
white-space: pre;
|
|
overflow: auto;
|
|
}
|
|
|
|
.call-log-message {
|
|
flex: none;
|
|
padding: 3px 0 3px 36px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.call-log-call {
|
|
display: flex;
|
|
flex: none;
|
|
flex-direction: column;
|
|
border-top: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.call-log-call-header {
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 2px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.call-log-call .codicon {
|
|
padding: 0 4px;
|
|
flex: none;
|
|
}
|
|
|
|
.call-log .codicon-check {
|
|
color: #21a945;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.call-log-call.error {
|
|
background-color: var(--vscode-inputValidation-errorBackground);
|
|
border-top: 1px solid var(--vscode-panel-border);
|
|
}
|
|
|
|
.call-log-call.error .call-log-call-header,
|
|
.call-log-message.error,
|
|
.call-log .codicon-error {
|
|
color: var(--vscode-errorForeground);
|
|
}
|
|
|
|
.call-log-details {
|
|
flex: 0 1 auto;
|
|
overflow-x: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.call-log-url {
|
|
color: var(--vscode-charts-blue);
|
|
}
|
|
|
|
.call-log-selector {
|
|
color: var(--vscode-charts-orange);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.call-log-time {
|
|
flex: none;
|
|
margin-left: 4px;
|
|
color: var(--gray);
|
|
}
|
|
|
|
.call-log-call .codicon.preview {
|
|
visibility: hidden;
|
|
color: var(--vscode-sideBarTitle-foreground);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.call-log-call .codicon.preview:hover {
|
|
color: inherit;
|
|
}
|
|
|
|
.call-log-call:hover .codicon.preview {
|
|
visibility: visible;
|
|
}
|