feat: resizeable sidebar

This commit is contained in:
2026-02-11 15:11:05 +01:00
parent 692e874594
commit ac6f07b9fe
5 changed files with 83 additions and 12 deletions

View File

@@ -45,6 +45,29 @@
background-color: var(--vscode-toolbar-hoverBackground, rgba(90, 93, 94, 0.31));
}
/* Sidebar toggle button */
.tab-bar-toggle-sidebar {
display: flex;
align-items: center;
justify-content: center;
width: 35px;
height: 100%;
background-color: transparent;
border: none;
border-right: 1px solid var(--vscode-tab-border, #252526);
color: var(--vscode-icon-foreground, #c5c5c5);
cursor: pointer;
flex-shrink: 0;
}
.tab-bar-toggle-sidebar:hover {
background-color: var(--vscode-toolbar-hoverBackground, rgba(90, 93, 94, 0.31));
}
.tab-bar-toggle-sidebar:active {
background-color: var(--vscode-toolbar-activeBackground, rgba(99, 102, 103, 0.31));
}
.tab-scroll-left {
border-right: 1px solid var(--vscode-tab-border, #252526);
}