diff --git a/src/vs/workbench/contrib/notebook/browser/notebook.css b/src/vs/workbench/contrib/notebook/browser/notebook.css index d12721ea241ce2583e3e976558ea111d5b68f734..c5b474a1af62fa09160fb846279bd7c123dc00c2 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebook.css +++ b/src/vs/workbench/contrib/notebook/browser/notebook.css @@ -60,7 +60,7 @@ .monaco-workbench .part.editor > .content .notebook-editor .output .multi-mimetype-output { position: absolute; top: 4px; - left: -24px; + left: -28px; width: 16px; height: 16px; cursor: pointer; @@ -95,7 +95,7 @@ .monaco-workbench .part.editor > .content .notebook-editor .monaco-list-row .menu { position: absolute; left: 0; - top: 8px; + top: 28px; visibility: hidden; width: 16px; margin: auto; @@ -145,7 +145,7 @@ width: 6px; border-left-width: 2px; border-left-style: solid; - left: 2px; + left: 20px; top: 22px; bottom: 8px; visibility: hidden; diff --git a/src/vs/workbench/contrib/notebook/browser/viewModel/notebookCellViewModel.ts b/src/vs/workbench/contrib/notebook/browser/viewModel/notebookCellViewModel.ts index 7eba173369807a1100ffb109c426cd96953dd48d..d62cfd8705190f2a69e0eb96a79c3bf236049462 100644 --- a/src/vs/workbench/contrib/notebook/browser/viewModel/notebookCellViewModel.ts +++ b/src/vs/workbench/contrib/notebook/browser/viewModel/notebookCellViewModel.ts @@ -506,7 +506,7 @@ export class CellViewModel extends Disposable implements ICellViewModel { } getIndicatorHeight(): number { - return this.getCellTotalHeight() - EDITOR_TOOLBAR_HEIGHT; + return this.getCellTotalHeight() - EDITOR_TOOLBAR_HEIGHT - 16; } protected _ensureOutputsTop(): void {