From 4fe81d8449175a5cd2940cac561116643a972b60 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Mon, 24 Jun 2019 10:46:38 -0700 Subject: [PATCH] Only set notebookEditor color in scrollable portion (#6140) --- src/sql/workbench/parts/notebook/notebookStyles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/parts/notebook/notebookStyles.ts b/src/sql/workbench/parts/notebook/notebookStyles.ts index 5088989a32..1c61b06a89 100644 --- a/src/sql/workbench/parts/notebook/notebookStyles.ts +++ b/src/sql/workbench/parts/notebook/notebookStyles.ts @@ -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}; } `);