Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

codeeditor.less 843B

1234567891011121314151617181920212223242526272829303132
  1. .monaco-editor-container {
  2. width: 100%;
  3. min-height: 200px;
  4. height: 90vh;
  5. }
  6. .edit.githook .monaco-editor-container {
  7. border: 1px solid var(--color-secondary);
  8. height: 70vh;
  9. }
  10. /* overwrite conflicting styles from fomantic */
  11. .monaco-editor-container .inputarea {
  12. min-height: 0 !important;
  13. margin: 0 !important;
  14. padding: 0 !important;
  15. resize: none !important;
  16. border: none !important;
  17. color: transparent !important;
  18. background-color: transparent !important;
  19. }
  20. /* these seem unthemeable */
  21. .monaco-scrollable-element > .scrollbar > .slider {
  22. background: var(--color-primary) !important;
  23. }
  24. .monaco-scrollable-element > .scrollbar > .slider:hover {
  25. background: var(--color-primary-dark-1) !important;
  26. }
  27. .monaco-scrollable-element > .scrollbar > .slider:active {
  28. background: var(--color-primary-dark-2) !important;
  29. }