Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/browser/controller/editContext/native/nativeEditContext.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 .native-edit-context {
7
margin: 0;
8
padding: 0;
9
position: absolute;
10
overflow-y: scroll;
11
scrollbar-width: none;
12
z-index: -10;
13
white-space: pre-wrap;
14
}
15
16
.monaco-editor .ime-text-area {
17
min-width: 0;
18
min-height: 0;
19
margin: 0;
20
padding: 0;
21
position: absolute;
22
outline: none !important;
23
resize: none;
24
border: none;
25
overflow: hidden;
26
color: transparent;
27
background-color: transparent;
28
z-index: -10;
29
}
30
31
.monaco-editor .edit-context-composition-none {
32
background-color: transparent;
33
border-bottom: none;
34
}
35
36
.monaco-editor :not(.hc-black, .hc-light) .edit-context-composition-secondary {
37
border-bottom: 1px solid var(--vscode-editor-compositionBorder);
38
}
39
40
.monaco-editor :not(.hc-black, .hc-light) .edit-context-composition-primary {
41
border-bottom: 2px solid var(--vscode-editor-compositionBorder);
42
}
43
44
.monaco-editor :is(.hc-black, .hc-light) .edit-context-composition-secondary {
45
border: 1px solid var(--vscode-editor-compositionBorder);
46
}
47
48
.monaco-editor :is(.hc-black, .hc-light) .edit-context-composition-primary {
49
border: 2px solid var(--vscode-editor-compositionBorder);
50
}
51
52