12345678910111213141516171819202122232425262728293031323334 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .inputarea {
- min-width: 0;
- min-height: 0;
- margin: 0;
- padding: 0;
- position: absolute;
- outline: none !important;
- resize: none;
- border: none;
- overflow: hidden;
- color: transparent;
- background-color: transparent;
- }
- /*.monaco-editor .inputarea {
- position: fixed !important;
- width: 800px !important;
- height: 500px !important;
- top: initial !important;
- left: initial !important;
- bottom: 0 !important;
- right: 0 !important;
- color: black !important;
- background: white !important;
- line-height: 15px !important;
- font-size: 14px !important;
- }*/
- .monaco-editor .inputarea.ime-input {
- z-index: 10;
- }
|