fix styles to apply to error message correctly (#10505)

This commit is contained in:
Anthony Dresser
2020-05-19 15:42:34 -07:00
committed by GitHub
parent 76c80943ba
commit 0ad7810ba0

View File

@@ -210,7 +210,7 @@ export class MessagePanel extends Disposable {
const errorColor = theme.getColor(resultsErrorColor);
const content: string[] = [];
if (errorColor) {
content.push(`.message-tree .monaco-tree-rows .error-message { color: ${errorColor}; }`);
content.push(`.message-tree .monaco-list-rows .error-message { color: ${errorColor}; }`);
}
const newStyles = content.join('\n');