Skip to content

Commit 4053bce

Browse files
committed
markdown output use link colors
1 parent 0ca10b2 commit 4053bce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/contrib/notebook/browser/notebookEditor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,12 +1103,12 @@ registerThemingParticipant((theme, collector) => {
11031103
}
11041104
const link = theme.getColor(textLinkForeground);
11051105
if (link) {
1106-
collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .cell .output a,
1106+
collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .output a,
11071107
.monaco-workbench .part.editor > .content .notebook-editor .cell.markdown a { color: ${link};} `);
11081108
}
11091109
const activeLink = theme.getColor(textLinkActiveForeground);
11101110
if (activeLink) {
1111-
collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .cell .output a:hover,
1111+
collector.addRule(`.monaco-workbench .part.editor > .content .notebook-editor .output a:hover,
11121112
.monaco-workbench .part.editor > .content .notebook-editor .cell .output a:active { color: ${activeLink}; }`);
11131113
}
11141114
const shortcut = theme.getColor(textPreformatForeground);

0 commit comments

Comments
 (0)