comp-markmap.component.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // @import "../../../node_modules/katex/dist/katex.min.css";
  2. // @import "../../../node_modules/highlight.js/styles/default.min.css";
  3. .maparea {
  4. width: 100%;
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. // 防止SVG内容溢出
  9. overflow: hidden;
  10. // 确保SVG内容居中
  11. &>g {
  12. transform-origin: center !important;
  13. }
  14. }
  15. :host {
  16. display: block;
  17. width: 100%;
  18. height: 100%;
  19. ::ng-deep {
  20. .node-checkbox {
  21. appearance: none;
  22. -webkit-appearance: none;
  23. width: 16px;
  24. height: 16px;
  25. border: 2px solid #666;
  26. border-radius: 3px;
  27. outline: none;
  28. cursor: pointer;
  29. position: relative;
  30. transition: all 0.2s;
  31. &:checked {
  32. background-color: var(--ion-color-primary);
  33. border-color: var(--ion-color-primary);
  34. &::after {
  35. content: '';
  36. position: absolute;
  37. left: 4px;
  38. top: 1px;
  39. width: 5px;
  40. height: 9px;
  41. border: solid white;
  42. border-width: 0 2px 2px 0;
  43. transform: rotate(45deg);
  44. }
  45. }
  46. &:hover {
  47. border-color: var(--ion-color-primary);
  48. }
  49. }
  50. }
  51. }