This commit is contained in:
rebornix 2020-07-23 11:14:34 -07:00
parent 5a0df839e3
commit 459a9aedac
2 changed files with 4 additions and 2 deletions

View file

@ -686,7 +686,9 @@
top: 0;
left: 0;
right: 0;
height: 100%;
width: 26px;
height: 26px;
cursor: pointer;
}
.monaco-workbench .notebookOverlay > .cell-list-container .notebook-folding-indicator .codicon {

View file

@ -345,7 +345,7 @@ export class MarkdownCellRenderer extends AbstractCellRenderer implements IListR
editorPart.style.display = 'none';
const innerContent = DOM.append(container, $('.cell.markdown'));
const foldingIndicator = DOM.append(focusIndicator, DOM.$('.notebook-folding-indicator'));
const foldingIndicator = DOM.append(container, DOM.$('.notebook-folding-indicator'));
const bottomCellContainer = DOM.append(container, $('.cell-bottom-toolbar-container'));
const betweenCellToolbar = disposables.add(this.createBetweenCellToolbar(bottomCellContainer, disposables, contextKeyService));