8fbb3c93233f56a7272a14c592ec02a3e49f1ffa617a6fa35b8273ff9b8426522232bd666fe31027a2d41b768fdafe7866f7e4dce2900f5109c3547502de2e 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. /* Uncomment to see lines flashing when they're painted */
  6. /*.monaco-editor .view-lines > .view-line {
  7. background-color: none;
  8. animation-name: flash-background;
  9. animation-duration: 800ms;
  10. }
  11. @keyframes flash-background {
  12. 0% { background-color: lightgreen; }
  13. 100% { background-color: none }
  14. }*/
  15. .mtkcontrol {
  16. color: rgb(255, 255, 255) !important;
  17. background: rgb(150, 0, 0) !important;
  18. }
  19. .monaco-editor.no-user-select .lines-content,
  20. .monaco-editor.no-user-select .view-line,
  21. .monaco-editor.no-user-select .view-lines {
  22. user-select: none;
  23. -webkit-user-select: none;
  24. -ms-user-select: none;
  25. }
  26. .monaco-editor.enable-user-select {
  27. user-select: initial;
  28. -webkit-user-select: initial;
  29. -ms-user-select: initial;
  30. }
  31. .monaco-editor .view-lines {
  32. white-space: nowrap;
  33. }
  34. .monaco-editor .view-line {
  35. position: absolute;
  36. width: 100%;
  37. }
  38. .monaco-editor .mtkz {
  39. display: inline-block;
  40. }
  41. /* TODO@tokenization bootstrap fix */
  42. /*.monaco-editor .view-line > span > span {
  43. float: none;
  44. min-height: inherit;
  45. margin-left: inherit;
  46. }*/