Skip to content

Commit 459a9ae

Browse files
committed
1 parent 5a0df83 commit 459a9ae

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/vs/workbench/contrib/notebook/browser/media/notebook.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,9 @@
686686
top: 0;
687687
left: 0;
688688
right: 0;
689-
height: 100%;
689+
width: 26px;
690+
height: 26px;
691+
cursor: pointer;
690692
}
691693

692694
.monaco-workbench .notebookOverlay > .cell-list-container .notebook-folding-indicator .codicon {

src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ export class MarkdownCellRenderer extends AbstractCellRenderer implements IListR
345345
editorPart.style.display = 'none';
346346

347347
const innerContent = DOM.append(container, $('.cell.markdown'));
348-
const foldingIndicator = DOM.append(focusIndicator, DOM.$('.notebook-folding-indicator'));
348+
const foldingIndicator = DOM.append(container, DOM.$('.notebook-folding-indicator'));
349349

350350
const bottomCellContainer = DOM.append(container, $('.cell-bottom-toolbar-container'));
351351
const betweenCellToolbar = disposables.add(this.createBetweenCellToolbar(bottomCellContainer, disposables, contextKeyService));

0 commit comments

Comments
 (0)