Skip to content

Commit b3882f0

Browse files
committed
Allow dragging cell collapse indicator
Fix microsoft#96308
1 parent dc3c7d3 commit b3882f0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@
593593
.monaco-workbench .part.editor > .content .notebook-editor > .cell-list-container .notebook-folding-indicator {
594594
position: absolute;
595595
top: 8px;
596-
left: 26px;
596+
left: 6px;
597597
cursor: pointer;
598598
}
599599

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ export class MarkdownCellRenderer extends AbstractCellRenderer implements IListR
356356

357357
const innerContent = DOM.append(container, $('.cell.markdown'));
358358
const insertionIndicatorTop = DOM.append(container, DOM.$('.notebook-cell-insertion-indicator-top'));
359-
const foldingIndicator = DOM.append(container, DOM.$('.notebook-folding-indicator'));
359+
const foldingIndicator = DOM.append(focusIndicator, DOM.$('.notebook-folding-indicator'));
360360

361361
const bottomCellContainer = DOM.append(container, $('.cell-bottom-toolbar-container'));
362362

0 commit comments

Comments
 (0)