123456789101112131415161718192021222324252627 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .rename-box {
- z-index: 100;
- color: inherit;
- }
- .monaco-editor .rename-box.preview {
- padding: 3px 3px 0 3px;
- }
- .monaco-editor .rename-box .rename-input {
- padding: 3px;
- width: calc(100% - 6px);
- }
- .monaco-editor .rename-box .rename-label {
- display: none;
- opacity: .8;
- }
- .monaco-editor .rename-box.preview .rename-label {
- display: inherit;
- }
|