We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 515649d commit a7b70f6Copy full SHA for a7b70f6
src/datascience-ui/interactive-common/trustMessage.tsx
@@ -22,7 +22,9 @@ export class TrustMessage extends React.PureComponent<ITrustMessageProps> {
22
};
23
const dynamicStyle: React.CSSProperties = {
24
maxWidth: getMaxWidth(textSize),
25
- color: this.props.isNotebookTrusted ? undefined : 'var(--vscode-editorError-foreground)',
+ color: this.props.isNotebookTrusted
26
+ ? 'var(--vscode-editor-foreground)'
27
+ : 'var(--vscode-editorError-foreground)',
28
cursor: this.props.isNotebookTrusted ? undefined : 'pointer'
29
30
0 commit comments