raw.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. "use strict";
  2. /* eslint-disable */
  3. Object.defineProperty(exports, "__esModule", { value: true });
  4. exports.content = void 0;
  5. /**
  6. * Auto generated file, do not modify it!
  7. */
  8. exports.content = `.x6-graph {
  9. position: relative;
  10. overflow: hidden;
  11. outline: none;
  12. touch-action: none;
  13. }
  14. .x6-graph-background,
  15. .x6-graph-grid,
  16. .x6-graph-svg {
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. bottom: 0;
  21. left: 0;
  22. }
  23. .x6-graph-background-stage,
  24. .x6-graph-grid-stage,
  25. .x6-graph-svg-stage {
  26. user-select: none;
  27. }
  28. .x6-graph.x6-graph-pannable {
  29. cursor: grab;
  30. cursor: -moz-grab;
  31. cursor: -webkit-grab;
  32. }
  33. .x6-graph.x6-graph-panning {
  34. cursor: grabbing;
  35. cursor: -moz-grabbing;
  36. cursor: -webkit-grabbing;
  37. user-select: none;
  38. }
  39. .x6-node {
  40. cursor: move;
  41. /* stylelint-disable-next-line */
  42. }
  43. .x6-node.x6-node-immovable {
  44. cursor: default;
  45. }
  46. .x6-node * {
  47. -webkit-user-drag: none;
  48. }
  49. .x6-node .scalable * {
  50. vector-effect: non-scaling-stroke;
  51. }
  52. .x6-node [magnet='true'] {
  53. cursor: crosshair;
  54. transition: opacity 0.3s;
  55. }
  56. .x6-node [magnet='true']:hover {
  57. opacity: 0.7;
  58. }
  59. .x6-node foreignObject {
  60. display: block;
  61. overflow: visible;
  62. background-color: transparent;
  63. }
  64. .x6-node foreignObject > body {
  65. position: static;
  66. width: 100%;
  67. height: 100%;
  68. margin: 0;
  69. padding: 0;
  70. overflow: visible;
  71. background-color: transparent;
  72. }
  73. .x6-edge .source-marker,
  74. .x6-edge .target-marker {
  75. vector-effect: non-scaling-stroke;
  76. }
  77. .x6-edge .connection {
  78. stroke-linejoin: round;
  79. fill: none;
  80. }
  81. .x6-edge .connection-wrap {
  82. cursor: move;
  83. opacity: 0;
  84. fill: none;
  85. stroke: #000;
  86. stroke-width: 15;
  87. stroke-linecap: round;
  88. stroke-linejoin: round;
  89. }
  90. .x6-edge .connection-wrap:hover {
  91. opacity: 0.4;
  92. stroke-opacity: 0.4;
  93. }
  94. .x6-edge .vertices {
  95. cursor: move;
  96. opacity: 0;
  97. }
  98. .x6-edge .vertices .vertex {
  99. fill: #1abc9c;
  100. }
  101. .x6-edge .vertices .vertex :hover {
  102. fill: #34495e;
  103. stroke: none;
  104. }
  105. .x6-edge .vertices .vertex-remove {
  106. cursor: pointer;
  107. fill: #fff;
  108. }
  109. .x6-edge .vertices .vertex-remove-area {
  110. cursor: pointer;
  111. opacity: 0.1;
  112. }
  113. .x6-edge .vertices .vertex-group:hover .vertex-remove-area {
  114. opacity: 1;
  115. }
  116. .x6-edge .arrowheads {
  117. cursor: move;
  118. opacity: 0;
  119. }
  120. .x6-edge .arrowheads .arrowhead {
  121. fill: #1abc9c;
  122. }
  123. .x6-edge .arrowheads .arrowhead :hover {
  124. fill: #f39c12;
  125. stroke: none;
  126. }
  127. .x6-edge .tools {
  128. cursor: pointer;
  129. opacity: 0;
  130. }
  131. .x6-edge .tools .tool-options {
  132. display: none;
  133. }
  134. .x6-edge .tools .tool-remove circle {
  135. fill: #f00;
  136. }
  137. .x6-edge .tools .tool-remove path {
  138. fill: #fff;
  139. }
  140. .x6-edge:hover .vertices,
  141. .x6-edge:hover .arrowheads,
  142. .x6-edge:hover .tools {
  143. opacity: 1;
  144. }
  145. .x6-highlight-opacity {
  146. opacity: 0.3;
  147. }
  148. .x6-cell-tool-editor {
  149. position: relative;
  150. display: inline-block;
  151. min-height: 1em;
  152. margin: 0;
  153. padding: 0;
  154. line-height: 1;
  155. white-space: normal;
  156. text-align: center;
  157. vertical-align: top;
  158. overflow-wrap: normal;
  159. outline: none;
  160. transform-origin: 0 0;
  161. -webkit-user-drag: none;
  162. }
  163. .x6-edge-tool-editor {
  164. border: 1px solid #275fc5;
  165. border-radius: 2px;
  166. }
  167. `;
  168. //# sourceMappingURL=raw.js.map