Path: blob/main/src/vs/editor/browser/viewParts/selections/selections.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/*6Keeping name short for faster parsing.7cslr = core selections layer rendering (div)8*/9.monaco-editor .lines-content .cslr {10position: absolute;11}1213.monaco-editor .focused .selected-text {14background-color: var(--vscode-editor-selectionBackground);15}1617.monaco-editor .selected-text {18background-color: var(--vscode-editor-inactiveSelectionBackground);19}2021.monaco-editor .top-left-radius { border-top-left-radius: 3px; }22.monaco-editor .bottom-left-radius { border-bottom-left-radius: 3px; }23.monaco-editor .top-right-radius { border-top-right-radius: 3px; }24.monaco-editor .bottom-right-radius { border-bottom-right-radius: 3px; }2526.monaco-editor.hc-black .top-left-radius { border-top-left-radius: 0; }27.monaco-editor.hc-black .bottom-left-radius { border-bottom-left-radius: 0; }28.monaco-editor.hc-black .top-right-radius { border-top-right-radius: 0; }29.monaco-editor.hc-black .bottom-right-radius { border-bottom-right-radius: 0; }3031.monaco-editor.hc-light .top-left-radius { border-top-left-radius: 0; }32.monaco-editor.hc-light .bottom-left-radius { border-bottom-left-radius: 0; }33.monaco-editor.hc-light .top-right-radius { border-top-right-radius: 0; }34.monaco-editor.hc-light .bottom-right-radius { border-bottom-right-radius: 0; }353637