ghostText.css 901 B

123456789101112131415161718192021222324252627282930313233
  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. .monaco-editor .suggest-preview-additional-widget {
  6. white-space: nowrap;
  7. }
  8. .monaco-editor .suggest-preview-additional-widget .content-spacer {
  9. color: transparent;
  10. white-space: pre;
  11. }
  12. .monaco-editor .suggest-preview-additional-widget .button {
  13. display: inline-block;
  14. cursor: pointer;
  15. text-decoration: underline;
  16. text-underline-position: under;
  17. }
  18. .monaco-editor .ghost-text-hidden {
  19. opacity: 0;
  20. font-size: 0;
  21. }
  22. .monaco-editor .ghost-text-decoration {
  23. font-style: italic;
  24. }
  25. .monaco-editor .suggest-preview-text {
  26. font-style: italic;
  27. }