monaco-editor
Version:
A browser based code editor
20 lines (16 loc) • 662 B
CSS
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.monaco-editor {
--vscode-editor-placeholder-foreground: var(--vscode-editorGhostText-foreground);
.editorPlaceholder {
top: 0px;
position: absolute;
overflow: hidden;
text-overflow: ellipsis;
text-wrap: nowrap;
pointer-events: none;
color: var(--vscode-editor-placeholder-foreground);
}
}