wfabr
wfabr
Enhancement: Allow styling of default VSCode-Tabs (not panel type) using theme variables. Current styles (non-specific to element state) https://github.com/vscode-elements/elements/blob/main/src/vscode-tab-header/vscode-tab-header.styles.ts#L43 ``` .wrapper { color: var(--vscode-foreground, #cccccc); } ``` https://github.com/vscode-elements/elements/blob/main/src/vscode-tab-header/vscode-tab-header.styles.ts#L26 ``` :host([active])...
Proposed enhancement: Allow vscode-tabs to support different layouts. This could be supported with an API? For example, the tabs could be stacked vertically in a column, and aligned to left...
The table scrolling is not always activated, even when tabel content is partially hidden. Proposed fix ``` // Line 201 - vscode-table.js _resizeTableBody() { let headerHeight = 0; let tbodyHeight...