mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-23 23:56:09 +01:00
fix colors
This commit is contained in:
@@ -2228,6 +2228,10 @@ export abstract class AbstractTree<T, TFilterData, TRef> implements IDisposable
|
||||
content.push(`.monaco-list${suffix} .monaco-tl-indent > .indent-guide.active { border-color: ${styles.treeIndentGuidesStroke}; }`);
|
||||
}
|
||||
|
||||
if (styles.listBackground) {
|
||||
content.push(`.monaco-list${suffix} .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row { background-color: ${styles.listBackground}; }`);
|
||||
}
|
||||
|
||||
this.styleElement.textContent = content.join('\n');
|
||||
|
||||
this.view.style(styles);
|
||||
|
||||
@@ -144,15 +144,15 @@
|
||||
width: 100%;
|
||||
|
||||
background-color: var(--vscode-sideBar-background);
|
||||
z-index: 5;
|
||||
z-index: 13;
|
||||
}
|
||||
|
||||
.monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row.last-sticky{
|
||||
z-index: 4;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
.monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row:hover{
|
||||
background-color: var(--vscode-list-hoverBackground);
|
||||
background-color: var(--vscode-list-hoverBackground) !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user