fix colors

This commit is contained in:
BeniBenj
2023-11-20 13:03:15 +01:00
parent 0566ecd220
commit 2e284178d2
2 changed files with 7 additions and 3 deletions
@@ -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);
+3 -3
View File
@@ -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;
}