Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/snippet/browser/snippetSession.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 .snippet-placeholder {
7
min-width: 2px;
8
outline-style: solid;
9
outline-width: 1px;
10
background-color: var(--vscode-editor-snippetTabstopHighlightBackground, transparent);
11
outline-color: var(--vscode-editor-snippetTabstopHighlightBorder, transparent);
12
}
13
14
.monaco-editor .finish-snippet-placeholder {
15
outline-style: solid;
16
outline-width: 1px;
17
background-color: var(--vscode-editor-snippetFinalTabstopHighlightBackground, transparent);
18
outline-color: var(--vscode-editor-snippetFinalTabstopHighlightBorder, transparent);
19
}
20
21