textAreaHandler.css 974 B

12345678910111213141516171819202122232425262728293031323334
  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 .inputarea {
  6. min-width: 0;
  7. min-height: 0;
  8. margin: 0;
  9. padding: 0;
  10. position: absolute;
  11. outline: none !important;
  12. resize: none;
  13. border: none;
  14. overflow: hidden;
  15. color: transparent;
  16. background-color: transparent;
  17. }
  18. /*.monaco-editor .inputarea {
  19. position: fixed !important;
  20. width: 800px !important;
  21. height: 500px !important;
  22. top: initial !important;
  23. left: initial !important;
  24. bottom: 0 !important;
  25. right: 0 !important;
  26. color: black !important;
  27. background: white !important;
  28. line-height: 15px !important;
  29. font-size: 14px !important;
  30. }*/
  31. .monaco-editor .inputarea.ime-input {
  32. z-index: 10;
  33. }