list.activeSelectionBackground seems to have no effect for custom themes (fixes #25788)

This commit is contained in:
Benjamin Pasero
2017-05-08 19:02:52 +02:00
parent 228ac262b8
commit a7c753cf40
3 changed files with 47 additions and 19 deletions

View File

@@ -812,7 +812,7 @@ export class List<T> implements ISpliceable<T>, IDisposable {
}
style(styles: IListStyles): void {
let content: string[] = [];
const content: string[] = [];
if (styles.listFocusBackground) {
content.push(`.monaco-list.${this.idPrefix}:focus .monaco-list-row.focused { background-color: ${styles.listFocusBackground}; }`);