From c2e6ca623372faca990ca72a97be4cfc1eb449d3 Mon Sep 17 00:00:00 2001 From: rebornix Date: Thu, 9 Jul 2020 16:27:39 -0700 Subject: [PATCH] fix #102019. --- .../contrib/notebook/browser/notebookEditorWidget.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts b/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts index 74ba86d560d..29551644c55 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts @@ -1367,11 +1367,11 @@ export const notebookOutputContainerColor = registerColor('notebook.outputContai }, nls.localize('notebook.outputContainerBackgroundColor', "The Color of the notebook output container background.")); // TODO currently also used for toolbar border, if we keep all of this, pick a generic name -export const CELL_TOOLBAR_SEPERATOR = registerColor('notebook.cellToolbarSeperator', { +export const CELL_TOOLBAR_SEPERATOR = registerColor('notebook.cellToolbarSeparator', { dark: Color.fromHex('#808080').transparent(0.35), light: Color.fromHex('#808080').transparent(0.35), hc: contrastBorder -}, nls.localize('notebook.cellToolbarSeperator', "The color of the seperator in the cell bottom toolbar")); +}, nls.localize('notebook.cellToolbarSeparator', "The color of the seperator in the cell bottom toolbar")); export const focusedCellBackground = registerColor('notebook.focusedCellBackground', { dark: transparent(PANEL_BORDER, .4),