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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
:root {
|
2022-11-11 02:20:09 +01:00
|
|
|
color-scheme: light dark;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2021-01-16 03:30:55 +01:00
|
|
|
--transparent-blue: #2196F355;
|
2022-10-28 01:50:41 +02:00
|
|
|
--light-pink: #ff69b460;
|
2021-01-08 01:15:34 +01:00
|
|
|
--gray: #888888;
|
|
|
|
|
--sidebar-width: 250px;
|
|
|
|
|
--box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
|
2022-10-28 01:50:41 +02:00
|
|
|
}
|
|
|
|
|
|
2021-01-08 01:15:34 +01:00
|
|
|
html, body {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
overscroll-behavior-x: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-21 17:29:01 +01:00
|
|
|
#root {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-08 03:34:59 +02:00
|
|
|
body, dialog {
|
2022-10-28 01:50:41 +02:00
|
|
|
background-color: var(--vscode-panel-background);
|
|
|
|
|
color: var(--vscode-foreground);
|
|
|
|
|
font-family: var(--vscode-font-family);
|
|
|
|
|
font-weight: var(--vscode-font-weight);
|
|
|
|
|
font-size: var(--vscode-font-size);
|
2021-01-21 17:29:01 +01:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-20 23:47:18 +02:00
|
|
|
a {
|
|
|
|
|
color: var(--vscode-textLink-foreground);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-08 03:34:59 +02:00
|
|
|
dialog {
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog .title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
background-color: var(--vscode-sideBar-background);
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog .title .codicon {
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog .body {
|
|
|
|
|
padding: 10px;
|
2023-09-12 04:01:00 +02:00
|
|
|
text-align: center;
|
2023-09-08 03:34:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
color: var(--vscode-button-foreground);
|
|
|
|
|
background: var(--vscode-button-background);
|
|
|
|
|
margin: 10px;
|
|
|
|
|
border: none;
|
|
|
|
|
height: 28px;
|
|
|
|
|
min-width: 40px;
|
|
|
|
|
cursor: pointer;
|
2023-09-12 04:01:00 +02:00
|
|
|
user-select: none;
|
2023-09-08 03:34:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button:focus {
|
|
|
|
|
outline: 1px solid var(--vscode-focusBorder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button:hover {
|
|
|
|
|
background: var(--vscode-button-hoverBackground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button.secondary {
|
|
|
|
|
color: var(--vscode-button-secondaryForeground);
|
|
|
|
|
background: var(--vscode-button-secondaryBackground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button.secondary:hover {
|
|
|
|
|
background: var(--vscode-button-secondaryHoverBackground);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-08 01:15:34 +01:00
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-11 20:43:33 +01:00
|
|
|
*[hidden],
|
|
|
|
|
.hidden {
|
2021-01-08 01:15:34 +01:00
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-26 23:16:32 +01:00
|
|
|
.invisible {
|
|
|
|
|
visibility: hidden !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-08 01:15:34 +01:00
|
|
|
svg {
|
|
|
|
|
fill: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.vbox {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-02 05:12:05 +02:00
|
|
|
.fill {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-08 01:15:34 +01:00
|
|
|
.hbox {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2023-02-16 16:59:21 +01:00
|
|
|
|
2023-03-07 23:24:50 +01:00
|
|
|
.spacer {
|
|
|
|
|
flex: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-16 16:59:21 +01:00
|
|
|
.codicon-check {
|
2023-07-10 21:56:56 +02:00
|
|
|
color: var(--vscode-charts-green);
|
2023-02-16 16:59:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.codicon-error {
|
2023-07-10 21:56:56 +02:00
|
|
|
color: var(--vscode-errorForeground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.codicon-warning {
|
|
|
|
|
color: var(--vscode-list-warningForeground);
|
2023-02-16 16:59:21 +01:00
|
|
|
}
|
2023-03-02 00:27:23 +01:00
|
|
|
|
2023-03-09 02:33:27 +01:00
|
|
|
.codicon-circle-outline {
|
|
|
|
|
color: var(--vscode-disabledForeground);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-02 00:27:23 +01:00
|
|
|
input[type=text], input[type=search] {
|
|
|
|
|
color: var(--vscode-input-foreground);
|
|
|
|
|
background-color: var(--vscode-input-background);
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
2023-03-07 06:37:39 +01:00
|
|
|
|
|
|
|
|
body.dark-mode ::-webkit-scrollbar {
|
|
|
|
|
width: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.dark-mode ::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: #555;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.dark-mode ::-webkit-scrollbar-track {
|
|
|
|
|
background-color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.dark-mode ::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background-color: #777;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.dark-mode ::-webkit-scrollbar-track:hover {
|
|
|
|
|
background-color: #444;
|
|
|
|
|
}
|
2023-03-10 06:45:57 +01:00
|
|
|
|
|
|
|
|
.codicon-loading {
|
|
|
|
|
animation: spin 1s infinite linear;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 04:45:32 +01:00
|
|
|
::placeholder {
|
|
|
|
|
color: var(--vscode-input-placeholderForeground);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-10 06:45:57 +01:00
|
|
|
@keyframes spin {
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|