Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.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 .inputarea {
7
min-width: 0;
8
min-height: 0;
9
margin: 0;
10
padding: 0;
11
position: absolute;
12
outline: none !important;
13
resize: none;
14
border: none;
15
overflow: hidden;
16
color: transparent;
17
background-color: transparent;
18
z-index: -10;
19
}
20
/*.monaco-editor .inputarea {
21
position: fixed !important;
22
width: 800px !important;
23
height: 500px !important;
24
top: initial !important;
25
left: initial !important;
26
bottom: 0 !important;
27
right: 0 !important;
28
color: black !important;
29
background: white !important;
30
line-height: 15px !important;
31
font-size: 14px !important;
32
z-index: 10 !important;
33
}*/
34
.monaco-editor .inputarea.ime-input {
35
z-index: 10;
36
caret-color: var(--vscode-editorCursor-foreground);
37
color: var(--vscode-editor-foreground);
38
}
39
40