Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.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 .view-overlays .current-line {
7
display: block;
8
position: absolute;
9
left: 0;
10
top: 0;
11
box-sizing: border-box;
12
height: 100%;
13
}
14
15
.monaco-editor .margin-view-overlays .current-line {
16
display: block;
17
position: absolute;
18
left: 0;
19
top: 0;
20
box-sizing: border-box;
21
height: 100%;
22
}
23
24
.monaco-editor
25
.margin-view-overlays
26
.current-line.current-line-margin.current-line-margin-both {
27
border-right: 0;
28
}
29
30