2022-10-19 22:24:52 +03: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
transform: scale(0.3);
|
|
|
|
fill: var(--vscode-editor-foreground);
|
|
|
|
margin: -18px;
|
|
|
|
width: 56px;
|
2024-03-14 19:39:47 +03:00
|
|
|
pointer-events: none;
|
2022-10-19 22:24:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list > div {
|
|
|
|
height: 22px;
|
|
|
|
line-height: 22px;
|
2024-03-14 19:39:47 +03:00
|
|
|
padding-right: 2px;
|
2022-10-19 22:24:52 +03:00
|
|
|
padding-left: 8px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-06-20 19:32:55 +03:00
|
|
|
box-sizing: border-box;
|
2022-10-19 22:24:52 +03:00
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
flex: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-10-26 20:42:46 +03:00
|
|
|
.list > div[disabled] {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: default;
|
|
|
|
background-color: none !important;
|
|
|
|
}
|
|
|
|
|
2022-10-19 22:24:52 +03:00
|
|
|
input[type=checkbox] {
|
|
|
|
margin-right: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2024-03-14 19:39:47 +03:00
|
|
|
select {
|
|
|
|
background: transparent;
|
|
|
|
color: inherit;
|
|
|
|
outline: none !important;
|
|
|
|
border: none !important;
|
|
|
|
padding: 2px 0 2px;
|
|
|
|
width: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
background: var(--vscode-sideBar-background);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list > div:hover,
|
|
|
|
select:hover {
|
2022-10-19 22:24:52 +03:00
|
|
|
background-color: #e8e8e8;
|
|
|
|
}
|
|
|
|
|
2024-03-14 19:39:47 +03:00
|
|
|
body[data-vscode-theme-kind=vscode-dark] .list > div:hover,
|
|
|
|
body[data-vscode-theme-kind=vscode-dark] select:hover {
|
2022-10-19 22:24:52 +03:00
|
|
|
background-color: #2a2d2e;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-10-26 20:42:46 +03:00
|
|
|
cursor: inherit;
|
2023-05-26 01:58:19 +03:00
|
|
|
flex: auto;
|
2022-10-19 22:24:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
body[data-vscode-theme-kind=vscode-dark] div.separator {
|
|
|
|
border-color: rgba(204, 204, 204, 0.2);
|
|
|
|
}
|
2024-04-06 18:44:26 +03:00
|
|
|
|
|
|
|
.section-header {
|
|
|
|
font-size: 11px;
|
|
|
|
margin: 10px 0 3px 8px;
|
|
|
|
font-weight: 700;
|
|
|
|
color: var(--vscode-editor-inlineValuesForeground);
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-indent {
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
}
|