Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/middleScroll/browser/middleScroll.css
3296 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
.monaco-editor {
7
.scroll-editor-on-middle-click-dot {
8
cursor: all-scroll;
9
position: absolute;
10
z-index: 1;
11
background-color: var(--vscode-editor-foreground, white);
12
border: 1px solid var(--vscode-editor-background, black);
13
opacity: 0.5;
14
width: 5px;
15
height: 5px;
16
border-radius: 50%;
17
transform: translate(-50%, -50%);
18
19
&.hidden {
20
display: none;
21
}
22
}
23
24
&.scroll-editor-on-middle-click-editor * {
25
cursor: all-scroll;
26
}
27
}
28
29