theming - fix color clash when dragging over selected or focused item

This commit is contained in:
Benjamin Pasero 2017-05-25 12:21:18 +02:00 committed by Dirk Baeumer
parent 8ee8d60b83
commit 51a10b5ebe

View file

@ -602,7 +602,7 @@ export class TreeView extends HeightMap {
if (styles.listDropBackground) {
content.push(`
.monaco-tree.monaco-tree-instance-${this.instance} .monaco-tree-wrapper.drop-target,
.monaco-tree.monaco-tree-instance-${this.instance} .monaco-tree-rows > .monaco-tree-row.drop-target { background-color: ${styles.listDropBackground} !important; }
.monaco-tree.monaco-tree-instance-${this.instance} .monaco-tree-rows > .monaco-tree-row.drop-target { background-color: ${styles.listDropBackground} !important; color: inherit !important; }
`);
}