Skip to content

Commit a321987

Browse files
committed
1 parent ee6716d commit a321987

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2732,17 +2732,17 @@ registerThemingParticipant((theme, collector) => {
27322732
}
27332733
`);
27342734

2735-
27362735
const link = theme.getColor(textLinkForeground);
27372736
if (link) {
27382737
collector.addRule(`.notebookOverlay .cell.markdown a,
2739-
.notebookOverlay .output-show-more-container a
2738+
.notebookOverlay .output-show-more-container a,
2739+
.notebookOverlay div.output-show-more a
27402740
{ color: ${link};} `);
2741-
27422741
}
27432742
const activeLink = theme.getColor(textLinkActiveForeground);
27442743
if (activeLink) {
2745-
collector.addRule(`.notebookOverlay .output-show-more-container a:active
2744+
collector.addRule(`.notebookOverlay .output-show-more-container a:active,
2745+
.notebookOverlay .output-show-more a:active
27462746
{ color: ${activeLink}; }`);
27472747
}
27482748
const shortcut = theme.getColor(textPreformatForeground);

0 commit comments

Comments
 (0)