diff --git a/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts b/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts index 135903cf125e5a3e40975aba17680fb1b8855cbd..3bb85777b5b8a8115ee5a5e889a94c99bc5aba84 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts @@ -1103,12 +1103,12 @@ registerThemingParticipant((theme, collector) => { } const link = theme.getColor(textLinkForeground); if (link) { - collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .cell .output a, + collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .output a, .monaco-workbench .part.editor > .content .notebook-editor .cell.markdown a { color: ${link};} `); } const activeLink = theme.getColor(textLinkActiveForeground); if (activeLink) { - collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .cell .output a:hover, + collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .output a:hover, .monaco-workbench .part.editor > .content .notebook-editor .cell .output a:active { color: ${activeLink}; }`); } const shortcut = theme.getColor(textPreformatForeground);