Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/browser/viewParts/selections/selections.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
/*
7
Keeping name short for faster parsing.
8
cslr = core selections layer rendering (div)
9
*/
10
.monaco-editor .lines-content .cslr {
11
position: absolute;
12
}
13
14
.monaco-editor .focused .selected-text {
15
background-color: var(--vscode-editor-selectionBackground);
16
}
17
18
.monaco-editor .selected-text {
19
background-color: var(--vscode-editor-inactiveSelectionBackground);
20
}
21
22
.monaco-editor .top-left-radius { border-top-left-radius: 3px; }
23
.monaco-editor .bottom-left-radius { border-bottom-left-radius: 3px; }
24
.monaco-editor .top-right-radius { border-top-right-radius: 3px; }
25
.monaco-editor .bottom-right-radius { border-bottom-right-radius: 3px; }
26
27
.monaco-editor.hc-black .top-left-radius { border-top-left-radius: 0; }
28
.monaco-editor.hc-black .bottom-left-radius { border-bottom-left-radius: 0; }
29
.monaco-editor.hc-black .top-right-radius { border-top-right-radius: 0; }
30
.monaco-editor.hc-black .bottom-right-radius { border-bottom-right-radius: 0; }
31
32
.monaco-editor.hc-light .top-left-radius { border-top-left-radius: 0; }
33
.monaco-editor.hc-light .bottom-left-radius { border-bottom-left-radius: 0; }
34
.monaco-editor.hc-light .top-right-radius { border-top-right-radius: 0; }
35
.monaco-editor.hc-light .bottom-right-radius { border-bottom-right-radius: 0; }
36
37