Style overrides: Add border-radius and padding to terminal tab entries (#324241)

* style: Add border-radius and padding to terminal tab entries

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Lee Murray
2026-07-03 19:00:52 +01:00
committed by GitHub
parent 3fbc14e673
commit 83b736f2da
2 changed files with 13 additions and 0 deletions

View File

@@ -236,3 +236,7 @@
.style-override .monaco-sash:not(.disabled) > .orthogonal-drag-handle {
border-radius: var(--vscode-sash-size);
}
.style-override.monaco-workbench .pane-body.integrated-terminal .tabs-container.has-text .terminal-tabs-chat-entry .terminal-tabs-entry {
border-radius: var(--vscode-cornerRadius-small);
}

View File

@@ -211,3 +211,12 @@
.style-override .settings-editor > .settings-header > .settings-header-controls {
border-bottom: none !important;
}
.style-override.monaco-workbench .pane-body.integrated-terminal .tabs-container.has-text .tabs-list .terminal-tabs-entry {
padding-left: 8px;
padding-right: 8px;
}
.style-override.monaco-workbench .pane-body.integrated-terminal .terminal-tabs-chat-entry {
padding: 4px;
}