Only set notebookEditor <a> color in scrollable portion (#6140)

This commit is contained in:
Chris LaFreniere
2019-06-24 10:46:38 -07:00
committed by GitHub
parent 46b8d55280
commit 4fe81d8449

View File

@@ -178,7 +178,7 @@ export function registerNotebookThemes(overrideEditorThemeSetting: boolean): IDi
const linkForeground = theme.getColor(textLinkForeground);
if (linkForeground) {
collector.addRule(`
.notebookEditor a {
.notebookEditor .scrollable a {
color: ${linkForeground};
}
`);