Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/browser/viewParts/gpuMark/gpuMark.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 .margin-view-overlays .gpu-mark {
7
position: absolute;
8
top: 0;
9
bottom: 0;
10
left: 0;
11
width: 100%;
12
display: inline-block;
13
border-left: solid 2px var(--vscode-editorWarning-foreground);
14
opacity: 0.2;
15
transition: background-color 0.1s linear;
16
}
17
18
.monaco-editor .margin-view-overlays .gpu-mark:hover {
19
background-color: var(--vscode-editorWarning-foreground)
20
}
21
22