Revert "re #99399."

Making folding indicators always visible was apparently fixed in some other way
This reverts commit 459a9aedac.
This commit is contained in:
Rob Lourens 2020-07-30 21:02:32 -07:00
parent c7471edd38
commit 2b090abd0f
2 changed files with 2 additions and 4 deletions

View file

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

View file

@ -370,7 +370,7 @@ export class MarkdownCellRenderer extends AbstractCellRenderer implements IListR
editorPart.style.display = 'none';
const innerContent = DOM.append(container, $('.cell.markdown'));
const foldingIndicator = DOM.append(container, DOM.$('.notebook-folding-indicator'));
const foldingIndicator = DOM.append(focusIndicator, DOM.$('.notebook-folding-indicator'));
const { collapsedPart, expandButton } = this.setupCollapsedPart(container);