Path: blob/main/src/vs/editor/contrib/middleScroll/browser/middleScroll.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-editor {6.scroll-editor-on-middle-click-dot {7cursor: all-scroll;8position: absolute;9z-index: 1;10background-color: var(--vscode-editor-foreground, white);11border: 1px solid var(--vscode-editor-background, black);12opacity: 0.5;13width: 5px;14height: 5px;15border-radius: 50%;16transform: translate(-50%, -50%);1718&.hidden {19display: none;20}21}2223&.scroll-editor-on-middle-click-editor * {24cursor: all-scroll;25}26}272829