123456789101112131415161718192021222324252627282930313233 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- .monaco-editor .suggest-preview-additional-widget {
- white-space: nowrap;
- }
- .monaco-editor .suggest-preview-additional-widget .content-spacer {
- color: transparent;
- white-space: pre;
- }
- .monaco-editor .suggest-preview-additional-widget .button {
- display: inline-block;
- cursor: pointer;
- text-decoration: underline;
- text-underline-position: under;
- }
- .monaco-editor .ghost-text-hidden {
- opacity: 0;
- font-size: 0;
- }
- .monaco-editor .ghost-text-decoration {
- font-style: italic;
- }
- .monaco-editor .suggest-preview-text {
- font-style: italic;
- }
|