feat: panel-toggle-button

This commit is contained in:
2026-02-17 11:41:35 +01:00
parent 70bc0b1b09
commit 4ac29a6528
3 changed files with 67 additions and 1 deletions

View File

@@ -181,6 +181,25 @@
background-color: currentColor;
}
.window-titlebar-panel-icon {
width: 14px;
height: 14px;
border: 1.5px solid currentColor;
border-radius: 2px;
display: block;
position: relative;
overflow: hidden;
}
.window-titlebar-panel-pane {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 33.3333%;
background-color: currentColor;
}
.window-titlebar-action-button:hover {
background-color: var(--vscode-toolbar-hoverBackground, rgba(90, 93, 94, 0.31));
}