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

Co-authored-by: Anthony Dresser <andresse@microsoft.com>
This commit is contained in:
Karl Burtram
2020-05-19 15:44:41 -07:00
committed by GitHub
parent acd6257bae
commit 85786b48c3

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');