playwright-vscode/media/settingsView.css

103 строки
2.0 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.
*/
body {
margin: 0;
padding: 0;
}
svg {
transform: scale(0.3);
fill: var(--vscode-editor-foreground);
margin: -18px;
width: 56px;
pointer-events: none;
}
.list {
display: flex;
flex-direction: column;
}
.list > div {
height: 22px;
line-height: 22px;
padding-right: 2px;
padding-left: 8px;
display: flex;
align-items: center;
box-sizing: border-box;
width: 100%;
white-space: nowrap;
flex: 0;
cursor: pointer;
}
.list > div[disabled] {
opacity: 0.5;
cursor: default;
background-color: none !important;
}
input[type=checkbox] {
margin-right: 4px;
cursor: pointer;
}
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 {
background-color: #e8e8e8;
}
body[data-vscode-theme-kind=vscode-dark] .list > div:hover,
body[data-vscode-theme-kind=vscode-dark] select:hover {
background-color: #2a2d2e;
}
label {
display: flex;
align-items: center;
cursor: inherit;
flex: auto;
}
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;
}