Fix tab border issues (#239915)

fix tab border
This commit is contained in:
Benjamin Christopher Simmonds
2025-02-07 11:13:41 +01:00
committed by GitHub
parent b3481536d3
commit d76069d643

View File

@@ -50,7 +50,7 @@
display: none;
}
.monaco-workbench .part.editor > .content .editor-group-container > .title .tab:not(.active) .tabs-and-actions-container.tabs-border-bottom::after {
.monaco-workbench .part.editor > .content .editor-group-container > .title .tabs-and-actions-container.tabs-border-bottom::after {
content: '';
position: absolute;
bottom: 0;
@@ -293,13 +293,17 @@
background-color: var(--tab-border-top-color);
}
.monaco-workbench .part.editor > .content .editor-group-container > .title .tabs-container > .tab.active.tab-border-bottom:not(:focus) > .tab-border-bottom-container {
.monaco-workbench .part.editor > .content .editor-group-container > .title .tabs-container > .tab.active.tab-border-bottom > .tab-border-bottom-container {
z-index: 10;
bottom: 0;
height: 1px;
background-color: var(--tab-border-bottom-color);
}
.monaco-workbench .part.editor > .content .editor-group-container > .title .tabs-container > .tab.active.tab-border-bottom:focus > .tab-border-bottom-container {
background-color: var(--vscode-focusBorder);
}
.monaco-workbench .part.editor > .content .editor-group-container > .title .tabs-container > .tab.dirty-border-top:not(:focus) > .tab-border-top-container {
z-index: 6;
top: 0;