Path: blob/main/src/vs/workbench/contrib/notebook/browser/media/notebookFolding.css
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .notebook-folding-indicator.mouseover .codicon.codicon-notebook-expanded {6opacity: 0;7}89.monaco-workbench:not(.reduce-motion) .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .notebook-folding-indicator.mouseover .codicon.codicon-notebook-expanded {10transition: opacity 0.1 s;11}1213.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .markdown-cell-hover .notebook-folding-indicator.mouseover .codicon.codicon-notebook-expanded {14opacity: 1;15}1617.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.focused .notebook-folding-indicator.mouseover .codicon.codicon-notebook-expanded,18.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row:hover .notebook-folding-indicator.mouseover .codicon.codicon-notebook-expanded {19opacity: 1;20}2122.monaco-workbench .notebookOverlay > .cell-list-container .notebook-folding-indicator {23height: 20px;24width: 20px;2526position: absolute;27top: 10px;28left: 6px;29display: flex;30justify-content: center;31align-items: center;32z-index: var(--z-index-notebook-folding-indicator);33}3435.monaco-workbench .notebookOverlay > .cell-list-container .webview-backed-markdown-cell .notebook-folding-indicator {36top: 8px;37}3839.monaco-workbench .notebookOverlay > .cell-list-container .notebook-folding-indicator .codicon {40visibility: visible;41height: 16px;42padding: 4px 4px 4px 4px;43}4445.monaco-workbench .notebookOverlay > .cell-list-container .notebook-folded-hint {46position: absolute;47user-select: none;48display: flex;49align-items: center;50}5152.monaco-workbench .notebookOverlay > .cell-list-container .notebook-folded-hint-label {53font-size: var(--notebook-cell-output-font-size);54font-family: var(--monaco-monospace-font);55font-style: italic;56opacity: 0.7;57}5859.monaco-workbench .notebookOverlay > .cell-list-container .folded-cell-run-section-button {60position: relative;61left: 0px;62padding: 2px;63border-radius: 5px;64margin-right: 4px;65height: 16px;66width: 16px;67z-index: var(--z-index-notebook-cell-expand-part-button);68}6970.monaco-workbench .notebookOverlay > .cell-list-container .folded-cell-run-section-button:hover {71background-color: var(--vscode-editorStickyScrollHover-background);72cursor: pointer;73}7475.monaco-workbench .notebookOverlay .cell-editor-container .monaco-editor .margin-view-overlays .codicon-folding-expanded,76.monaco-workbench .notebookOverlay .cell-editor-container .monaco-editor .margin-view-overlays .codicon-folding-collapsed {77margin-left: 0;78}798081