Skip to content

Commit

Permalink
fix styles to apply to error message correctly (microsoft#10505)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Dresser authored May 19, 2020
1 parent 76c8094 commit 0ad7810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sql/workbench/contrib/query/browser/messagePanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 0ad7810

Please sign in to comment.