index.css 66 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250
  1. .x6-graph {
  2. position: relative;
  3. outline: none;
  4. touch-action: none;
  5. }
  6. .x6-graph-background,
  7. .x6-graph-grid,
  8. .x6-graph-svg {
  9. position: absolute;
  10. top: 0;
  11. right: 0;
  12. bottom: 0;
  13. left: 0;
  14. }
  15. .x6-graph-background-stage,
  16. .x6-graph-grid-stage,
  17. .x6-graph-svg-stage {
  18. user-select: none;
  19. }
  20. .x6-graph.x6-graph-pannable {
  21. cursor: grab;
  22. cursor: -moz-grab;
  23. cursor: -webkit-grab;
  24. }
  25. .x6-graph.x6-graph-panning {
  26. cursor: grabbing;
  27. cursor: -moz-grabbing;
  28. cursor: -webkit-grabbing;
  29. user-select: none;
  30. }
  31. .x6-node {
  32. cursor: move;
  33. /* stylelint-disable-next-line */
  34. }
  35. .x6-node.x6-node-immovable {
  36. cursor: default;
  37. }
  38. .x6-node * {
  39. -webkit-user-drag: none;
  40. }
  41. .x6-node .scalable * {
  42. vector-effect: non-scaling-stroke;
  43. }
  44. .x6-node [magnet='true'] {
  45. cursor: crosshair;
  46. transition: opacity 0.3s;
  47. }
  48. .x6-node [magnet='true']:hover {
  49. opacity: 0.7;
  50. }
  51. .x6-node foreignObject {
  52. display: block;
  53. overflow: visible;
  54. background-color: transparent;
  55. }
  56. .x6-node foreignObject > body {
  57. position: static;
  58. width: 100%;
  59. height: 100%;
  60. margin: 0;
  61. padding: 0;
  62. overflow: visible;
  63. background-color: transparent;
  64. }
  65. .x6-edge .source-marker,
  66. .x6-edge .target-marker {
  67. vector-effect: non-scaling-stroke;
  68. }
  69. .x6-edge .connection {
  70. stroke-linejoin: round;
  71. fill: none;
  72. }
  73. .x6-edge .connection-wrap {
  74. cursor: move;
  75. opacity: 0;
  76. fill: none;
  77. stroke: #000;
  78. stroke-width: 15;
  79. stroke-linecap: round;
  80. stroke-linejoin: round;
  81. }
  82. .x6-edge .connection-wrap:hover {
  83. opacity: 0.4;
  84. stroke-opacity: 0.4;
  85. }
  86. .x6-edge .vertices {
  87. cursor: move;
  88. opacity: 0;
  89. }
  90. .x6-edge .vertices .vertex {
  91. fill: #1abc9c;
  92. }
  93. .x6-edge .vertices .vertex :hover {
  94. fill: #34495e;
  95. stroke: none;
  96. }
  97. .x6-edge .vertices .vertex-remove {
  98. cursor: pointer;
  99. fill: #fff;
  100. }
  101. .x6-edge .vertices .vertex-remove-area {
  102. cursor: pointer;
  103. opacity: 0.1;
  104. }
  105. .x6-edge .vertices .vertex-group:hover .vertex-remove-area {
  106. opacity: 1;
  107. }
  108. .x6-edge .arrowheads {
  109. cursor: move;
  110. opacity: 0;
  111. }
  112. .x6-edge .arrowheads .arrowhead {
  113. fill: #1abc9c;
  114. }
  115. .x6-edge .arrowheads .arrowhead :hover {
  116. fill: #f39c12;
  117. stroke: none;
  118. }
  119. .x6-edge .tools {
  120. cursor: pointer;
  121. opacity: 0;
  122. }
  123. .x6-edge .tools .tool-options {
  124. display: none;
  125. }
  126. .x6-edge .tools .tool-remove circle {
  127. fill: #f00;
  128. }
  129. .x6-edge .tools .tool-remove path {
  130. fill: #fff;
  131. }
  132. .x6-edge:hover .vertices,
  133. .x6-edge:hover .arrowheads,
  134. .x6-edge:hover .tools {
  135. opacity: 1;
  136. }
  137. .x6-highlight-opacity {
  138. opacity: 0.3;
  139. }
  140. @keyframes halo-pie-visibility {
  141. 0% {
  142. visibility: hidden;
  143. }
  144. 100% {
  145. visibility: visible;
  146. }
  147. }
  148. @keyframes halo-pie-opening {
  149. 0% {
  150. transform: scale(0.4) rotate(-20deg);
  151. }
  152. 100% {
  153. transform: scale(1) rotate(0);
  154. }
  155. }
  156. .x6-widget-handle {
  157. position: absolute;
  158. width: 20px;
  159. height: 20px;
  160. background-color: transparent;
  161. background-repeat: no-repeat;
  162. background-position: 0 0;
  163. background-size: 20px 20px;
  164. cursor: pointer;
  165. user-select: none;
  166. pointer-events: auto;
  167. -webkit-user-drag: none;
  168. user-drag: none;
  169. /* stylelint-disable-line */
  170. }
  171. .x6-widget-handle.hidden {
  172. display: none;
  173. }
  174. .x6-widget-handle-selected {
  175. background-color: rgba(0, 0, 0, 0.1);
  176. border-radius: 3px;
  177. }
  178. .x6-widget-handle-remove {
  179. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M15.386%2C3.365c-3.315-3.314-8.707-3.313-12.021%2C0c-3.314%2C3.315-3.314%2C8.706%2C0%2C12.02%20c3.314%2C3.314%2C8.707%2C3.314%2C12.021%2C0S18.699%2C6.68%2C15.386%2C3.365L15.386%2C3.365z%20M4.152%2C14.598C1.273%2C11.719%2C1.273%2C7.035%2C4.153%2C4.154%20c2.88-2.88%2C7.563-2.88%2C10.443%2C0c2.881%2C2.88%2C2.881%2C7.562%2C0%2C10.443C11.716%2C17.477%2C7.032%2C17.477%2C4.152%2C14.598L4.152%2C14.598z%22%2F%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M12.157%2C11.371L7.38%2C6.593C7.162%2C6.375%2C6.809%2C6.375%2C6.592%2C6.592c-0.218%2C0.219-0.218%2C0.572%2C0%2C0.79%20l4.776%2C4.776c0.218%2C0.219%2C0.571%2C0.219%2C0.79%2C0C12.375%2C11.941%2C12.375%2C11.588%2C12.157%2C11.371L12.157%2C11.371z%22%2F%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M11.369%2C6.593l-4.777%2C4.778c-0.217%2C0.217-0.217%2C0.568%2C0%2C0.787c0.219%2C0.219%2C0.571%2C0.217%2C0.788%2C0l4.777-4.777%20c0.218-0.218%2C0.218-0.571%2C0.001-0.789C11.939%2C6.375%2C11.587%2C6.375%2C11.369%2C6.593L11.369%2C6.593z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  180. cursor: pointer;
  181. }
  182. .x6-widget-handle-remove:hover {
  183. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M15.386%2C3.365c-3.315-3.314-8.707-3.313-12.021%2C0c-3.314%2C3.315-3.314%2C8.706%2C0%2C12.02%20c3.314%2C3.314%2C8.707%2C3.314%2C12.021%2C0S18.699%2C6.68%2C15.386%2C3.365L15.386%2C3.365z%22%2F%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M12.157%2C11.371L7.38%2C6.593C7.162%2C6.375%2C6.809%2C6.375%2C6.592%2C6.592c-0.218%2C0.219-0.218%2C0.572%2C0%2C0.79%20l4.776%2C4.776c0.218%2C0.219%2C0.571%2C0.219%2C0.79%2C0C12.375%2C11.941%2C12.375%2C11.588%2C12.157%2C11.371L12.157%2C11.371z%22%2F%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M11.369%2C6.593l-4.777%2C4.778c-0.217%2C0.217-0.217%2C0.568%2C0%2C0.787c0.219%2C0.219%2C0.571%2C0.217%2C0.788%2C0l4.777-4.777%20c0.218-0.218%2C0.218-0.571%2C0.001-0.789C11.939%2C6.375%2C11.587%2C6.375%2C11.369%2C6.593L11.369%2C6.593z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  184. }
  185. .x6-widget-handle-rotate {
  186. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M9.374%2C17.592c-4.176%2C0-7.57-3.401-7.57-7.575c0-4.175%2C3.395-7.574%2C7.57-7.574c0.28%2C0%2C0.56%2C0.018%2C0.837%2C0.05%20V1.268c0-0.158%2C0.099-0.3%2C0.239-0.36c0.151-0.058%2C0.315-0.026%2C0.428%2C0.086l2.683%2C2.688c0.152%2C0.154%2C0.152%2C0.399%2C0%2C0.553l-2.68%2C2.693%20c-0.115%2C0.112-0.279%2C0.147-0.431%2C0.087c-0.141-0.063-0.239-0.205-0.239-0.361V5.296C9.934%2C5.243%2C9.654%2C5.22%2C9.374%2C5.22%20c-2.646%2C0-4.796%2C2.152-4.796%2C4.797s2.154%2C4.798%2C4.796%2C4.798c2.645%2C0%2C4.798-2.153%2C4.798-4.798c0-0.214%2C0.174-0.391%2C0.391-0.391h1.991%20c0.217%2C0%2C0.394%2C0.177%2C0.394%2C0.391C16.947%2C14.19%2C13.549%2C17.592%2C9.374%2C17.592L9.374%2C17.592z%20M9.374%2C17.592%22%2F%3E%3C%2Fsvg%3E%20');
  187. cursor: move;
  188. }
  189. .x6-widget-handle-rotate:hover {
  190. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FD6EB6%22%20d%3D%22M9.374%2C17.592c-4.176%2C0-7.57-3.401-7.57-7.575c0-4.175%2C3.395-7.574%2C7.57-7.574c0.28%2C0%2C0.56%2C0.018%2C0.837%2C0.05%20V1.268c0-0.158%2C0.099-0.3%2C0.239-0.36c0.151-0.058%2C0.315-0.026%2C0.428%2C0.086l2.683%2C2.688c0.152%2C0.154%2C0.152%2C0.399%2C0%2C0.553l-2.68%2C2.693%20c-0.115%2C0.112-0.279%2C0.147-0.431%2C0.087c-0.141-0.063-0.239-0.205-0.239-0.361V5.296C9.934%2C5.243%2C9.654%2C5.22%2C9.374%2C5.22%20c-2.646%2C0-4.796%2C2.152-4.796%2C4.797s2.154%2C4.798%2C4.796%2C4.798c2.645%2C0%2C4.798-2.153%2C4.798-4.798c0-0.214%2C0.174-0.391%2C0.391-0.391h1.991%20c0.217%2C0%2C0.394%2C0.177%2C0.394%2C0.391C16.947%2C14.19%2C13.549%2C17.592%2C9.374%2C17.592L9.374%2C17.592z%20M9.374%2C17.592%22%2F%3E%3C%2Fsvg%3E%20');
  191. }
  192. .x6-widget-handle-resize {
  193. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3Csvg%20height%3D%2224px%22%20version%3D%221.1%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Ctitle%2F%3E%3Cdesc%2F%3E%3Cdefs%2F%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20id%3D%22miu%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%3E%3Cg%20id%3D%22Artboard-1%22%20transform%3D%22translate(-251.000000%2C%20-443.000000)%22%3E%3Cg%20id%3D%22slice%22%20transform%3D%22translate(215.000000%2C%20119.000000)%22%2F%3E%3Cpath%20d%3D%22M252%2C448%20L256%2C448%20L256%2C444%20L252%2C444%20L252%2C448%20Z%20M257%2C448%20L269%2C448%20L269%2C446%20L257%2C446%20L257%2C448%20Z%20M257%2C464%20L269%2C464%20L269%2C462%20L257%2C462%20L257%2C464%20Z%20M270%2C444%20L270%2C448%20L274%2C448%20L274%2C444%20L270%2C444%20Z%20M252%2C462%20L252%2C466%20L256%2C466%20L256%2C462%20L252%2C462%20Z%20M270%2C462%20L270%2C466%20L274%2C466%20L274%2C462%20L270%2C462%20Z%20M254%2C461%20L256%2C461%20L256%2C449%20L254%2C449%20L254%2C461%20Z%20M270%2C461%20L272%2C461%20L272%2C449%20L270%2C449%20L270%2C461%20Z%22%20fill%3D%22%236A6C8A%22%20id%3D%22editor-crop-glyph%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  194. cursor: se-resize;
  195. }
  196. .x6-widget-handle-resize:hover {
  197. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3Csvg%20height%3D%2224px%22%20version%3D%221.1%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Asketch%3D%22http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%2Fns%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Ctitle%2F%3E%3Cdesc%2F%3E%3Cdefs%2F%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20id%3D%22miu%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%3E%3Cg%20id%3D%22Artboard-1%22%20transform%3D%22translate(-251.000000%2C%20-443.000000)%22%3E%3Cg%20id%3D%22slice%22%20transform%3D%22translate(215.000000%2C%20119.000000)%22%2F%3E%3Cpath%20d%3D%22M252%2C448%20L256%2C448%20L256%2C444%20L252%2C444%20L252%2C448%20Z%20M257%2C448%20L269%2C448%20L269%2C446%20L257%2C446%20L257%2C448%20Z%20M257%2C464%20L269%2C464%20L269%2C462%20L257%2C462%20L257%2C464%20Z%20M270%2C444%20L270%2C448%20L274%2C448%20L274%2C444%20L270%2C444%20Z%20M252%2C462%20L252%2C466%20L256%2C466%20L256%2C462%20L252%2C462%20Z%20M270%2C462%20L270%2C466%20L274%2C466%20L274%2C462%20L270%2C462%20Z%20M254%2C461%20L256%2C461%20L256%2C449%20L254%2C449%20L254%2C461%20Z%20M270%2C461%20L272%2C461%20L272%2C449%20L270%2C449%20L270%2C461%20Z%22%20fill%3D%22%23FD6EB6%22%20id%3D%22editor-crop-glyph%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  198. }
  199. .x6-widget-handle-clone {
  200. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M12.852%2C0.875h-9.27c-0.853%2C0-1.547%2C0.694-1.547%2C1.547v10.816h1.547V2.422h9.27V0.875z%20M15.172%2C3.965h-8.5%20c-0.849%2C0-1.547%2C0.698-1.547%2C1.547v10.816c0%2C0.849%2C0.698%2C1.547%2C1.547%2C1.547h8.5c0.85%2C0%2C1.543-0.698%2C1.543-1.547V5.512%20C16.715%2C4.663%2C16.021%2C3.965%2C15.172%2C3.965L15.172%2C3.965z%20M15.172%2C16.328h-8.5V5.512h8.5V16.328z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  201. cursor: move;
  202. }
  203. .x6-widget-handle-clone:hover {
  204. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23FD6EB6%22%20d%3D%22M12.852%2C0.875h-9.27c-0.853%2C0-1.547%2C0.694-1.547%2C1.547v10.816h1.547V2.422h9.27V0.875z%20M15.172%2C3.965h-8.5%20c-0.849%2C0-1.547%2C0.698-1.547%2C1.547v10.816c0%2C0.849%2C0.698%2C1.547%2C1.547%2C1.547h8.5c0.849%2C0%2C1.543-0.698%2C1.543-1.547V5.512%20C16.715%2C4.663%2C16.021%2C3.965%2C15.172%2C3.965L15.172%2C3.965z%20M15.172%2C16.328h-8.5V5.512h8.5V16.328z%20M15.172%2C16.328%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  205. }
  206. .x6-widget-handle-link {
  207. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M9.884%2C9.838c0.54-0.551%2C1.005-0.955%2C1.384-1.201c0.463-0.308%2C0.749-0.352%2C0.887-0.352h1.34v1.367%20c0%2C0.104%2C0.061%2C0.2%2C0.154%2C0.242s0.204%2C0.027%2C0.284-0.038l3.168-2.669c0.06-0.051%2C0.096-0.125%2C0.096-0.203S17.16%2C6.83%2C17.101%2C6.781%20l-3.168-2.677c-0.08-0.067-0.19-0.081-0.284-0.038c-0.094%2C0.045-0.154%2C0.139-0.154%2C0.242v1.414h-1.343%20c-1.24%2C0.014-2.215%2C0.67-2.927%2C1.242c-0.797%2C0.65-1.533%2C1.447-2.245%2C2.217c-0.361%2C0.391-0.7%2C0.759-1.044%2C1.1%20c-0.541%2C0.549-1.011%2C0.951-1.395%2C1.199c-0.354%2C0.231-0.678%2C0.357-0.921%2C0.357h-1.8c-0.146%2C0-0.266%2C0.12-0.266%2C0.265v2.029%20c0%2C0.148%2C0.12%2C0.268%2C0.266%2C0.268h1.8l0%2C0c1.255-0.014%2C2.239-0.667%2C2.958-1.24c0.82-0.661%2C1.572-1.475%2C2.297-2.256%20C9.225%2C10.524%2C9.555%2C10.169%2C9.884%2C9.838z%22%2F%3E%3C%2Fsvg%3E%20');
  208. cursor: move;
  209. cursor: -moz-grabbing;
  210. cursor: -webkit-grabbing;
  211. }
  212. .x6-widget-handle-link:hover {
  213. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FD6EB6%22%20d%3D%22M9.884%2C9.838c0.54-0.551%2C1.005-0.955%2C1.384-1.201c0.463-0.308%2C0.749-0.352%2C0.887-0.352h1.34v1.367%20c0%2C0.104%2C0.061%2C0.2%2C0.154%2C0.242s0.204%2C0.027%2C0.284-0.038l3.168-2.669c0.06-0.051%2C0.096-0.125%2C0.096-0.203S17.16%2C6.83%2C17.101%2C6.781%20l-3.168-2.677c-0.08-0.067-0.19-0.081-0.284-0.038c-0.094%2C0.045-0.154%2C0.139-0.154%2C0.242v1.414h-1.343%20c-1.24%2C0.014-2.215%2C0.67-2.927%2C1.242c-0.797%2C0.65-1.533%2C1.447-2.245%2C2.217c-0.361%2C0.391-0.7%2C0.759-1.044%2C1.1%20c-0.541%2C0.549-1.011%2C0.951-1.395%2C1.199c-0.354%2C0.231-0.678%2C0.357-0.921%2C0.357h-1.8c-0.146%2C0-0.266%2C0.12-0.266%2C0.265v2.029%20c0%2C0.148%2C0.12%2C0.268%2C0.266%2C0.268h1.8l0%2C0c1.255-0.014%2C2.239-0.667%2C2.958-1.24c0.82-0.661%2C1.572-1.475%2C2.297-2.256%20C9.225%2C10.524%2C9.555%2C10.169%2C9.884%2C9.838z%22%2F%3E%3C%2Fsvg%3E%20');
  214. }
  215. .x6-widget-handle-fork {
  216. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%236A6C8A%22%20d%3D%22M13.307%2C11.593c-0.69%2C0-1.299%2C0.33-1.693%2C0.835l-4.136-2.387%20C7.552%2C9.82%2C7.602%2C9.589%2C7.602%2C9.344c0-0.25-0.051-0.487-0.129-0.71l4.097-2.364c0.393%2C0.536%2C1.022%2C0.888%2C1.737%2C0.888%20c1.193%2C0%2C2.16-0.967%2C2.16-2.159s-0.967-2.159-2.16-2.159c-1.191%2C0-2.158%2C0.967-2.158%2C2.159c0%2C0.076%2C0.014%2C0.149%2C0.021%2C0.223%20L6.848%2C7.716C6.469%2C7.39%2C5.982%2C7.185%2C5.442%2C7.185c-1.191%2C0-2.158%2C0.967-2.158%2C2.159s0.967%2C2.159%2C2.158%2C2.159%20c0.545%2C0%2C1.037-0.208%2C1.417-0.541l4.319%2C2.493c-0.014%2C0.098-0.029%2C0.194-0.029%2C0.296c0%2C1.193%2C0.967%2C2.159%2C2.158%2C2.159%20c1.193%2C0%2C2.16-0.966%2C2.16-2.159C15.467%2C12.559%2C14.5%2C11.593%2C13.307%2C11.593z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  217. cursor: move;
  218. }
  219. .x6-widget-handle-fork:hover {
  220. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23FD6EB6%22%20d%3D%22M13.307%2C11.593c-0.69%2C0-1.299%2C0.33-1.693%2C0.835l-4.136-2.387%20c0.075-0.22%2C0.125-0.452%2C0.125-0.697c0-0.25-0.051-0.487-0.129-0.71l4.097-2.365c0.394%2C0.536%2C1.022%2C0.888%2C1.737%2C0.888%20c1.193%2C0%2C2.16-0.967%2C2.16-2.159s-0.967-2.159-2.16-2.159c-1.191%2C0-2.158%2C0.967-2.158%2C2.159c0%2C0.076%2C0.015%2C0.148%2C0.022%2C0.223%20L6.848%2C7.716C6.469%2C7.39%2C5.981%2C7.185%2C5.442%2C7.185c-1.191%2C0-2.158%2C0.967-2.158%2C2.159s0.967%2C2.159%2C2.158%2C2.159%20c0.545%2C0%2C1.037-0.208%2C1.417-0.541l4.319%2C2.493c-0.013%2C0.098-0.029%2C0.194-0.029%2C0.296c0%2C1.193%2C0.967%2C2.159%2C2.158%2C2.159%20c1.193%2C0%2C2.16-0.966%2C2.16-2.159C15.467%2C12.559%2C14.5%2C11.593%2C13.307%2C11.593z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  221. }
  222. .x6-widget-handle-unlink {
  223. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cg%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M12.285%2C9.711l-2.104-0.302L9.243%2C8.568L6.669%2C7.095C6.948%2C6.6%2C6.995%2C6.026%2C6.845%2C5.474%20c-0.191-0.698-0.695-1.36-1.438-1.786C4.068%2C2.922%2C2.464%2C3.214%2C1.82%2C4.338C1.536%2C4.836%2C1.489%2C5.414%2C1.64%2C5.97%20c0.189%2C0.698%2C0.694%2C1.36%2C1.438%2C1.787c0.328%2C0.187%2C0.67%2C0.31%2C1.01%2C0.372c0.002%2C0%2C0.006%2C0.002%2C0.008%2C0.004%20c0.027%2C0.004%2C0.057%2C0.009%2C0.088%2C0.011c2.12%2C0.316%2C3.203%2C0.915%2C3.73%2C1.337c-0.527%2C0.424-1.61%2C1.021-3.731%2C1.339%20c-0.029%2C0.003-0.058%2C0.007-0.087%2C0.012c-0.002%2C0.002-0.004%2C0.002-0.007%2C0.003c-0.341%2C0.062-0.684%2C0.187-1.013%2C0.374%20c-0.74%2C0.425-1.246%2C1.089-1.437%2C1.787c-0.149%2C0.555-0.105%2C1.133%2C0.181%2C1.632c0.011%2C0.018%2C0.021%2C0.033%2C0.033%2C0.049l0.883%2C0.783%20c0.765%2C0.366%2C1.775%2C0.328%2C2.67-0.184c0.744-0.425%2C1.248-1.088%2C1.439-1.786c0.148-0.552%2C0.104-1.126-0.176-1.62l2.573-1.473%20c0.573%2C0.287%2C2.299%2C1.292%2C2.299%2C1.292s3.602%2C1.445%2C4.241%2C1.812c0.773%2C0.191%2C0.566-0.151%2C0.566-0.151L12.285%2C9.711z%20M5.571%2C6.482%20C5.279%2C6.993%2C4.425%2C7.076%2C3.705%2C6.664C3.282%2C6.424%2C2.966%2C6.039%2C2.856%2C5.64C2.81%2C5.464%2C2.778%2C5.203%2C2.917%2C4.963%20c0.291-0.51%2C1.146-0.593%2C1.866-0.182C5.21%2C5.027%2C5.521%2C5.4%2C5.632%2C5.807C5.679%2C5.98%2C5.708%2C6.242%2C5.571%2C6.482z%20M5.632%2C13.159%20c-0.111%2C0.406-0.422%2C0.778-0.848%2C1.025c-0.719%2C0.409-1.576%2C0.327-1.867-0.184c-0.137-0.239-0.106-0.499-0.06-0.676%20c0.108-0.398%2C0.426-0.781%2C0.847-1.022c0.72-0.412%2C1.574-0.329%2C1.866%2C0.181C5.708%2C12.723%2C5.679%2C12.983%2C5.632%2C13.159z%20M16.181%2C5.139%20c-0.448%2C0.258-4.435%2C1.9-4.435%2C1.9s-1.556%2C0.855-2.104%2C1.13l0.937%2C0.843l2.057-0.229l4.11-3.638%20C16.745%2C5.146%2C17.013%2C4.664%2C16.181%2C5.139z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  224. }
  225. .x6-widget-handle-unlink:hover {
  226. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2218.75px%22%20height%3D%2218.75px%22%20viewBox%3D%220%200%2018.75%2018.75%22%20enable-background%3D%22new%200%200%2018.75%2018.75%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cg%3E%3Cpath%20fill%3D%22%23FD6EB6%22%20d%3D%22M12.285%2C9.711l-2.104-0.302L9.243%2C8.568L6.669%2C7.095C6.948%2C6.6%2C6.995%2C6.026%2C6.845%2C5.474%20c-0.191-0.698-0.695-1.36-1.438-1.786C4.068%2C2.922%2C2.464%2C3.214%2C1.82%2C4.338C1.536%2C4.836%2C1.489%2C5.414%2C1.64%2C5.97%20c0.189%2C0.698%2C0.694%2C1.36%2C1.438%2C1.787c0.328%2C0.187%2C0.67%2C0.31%2C1.01%2C0.372c0.002%2C0%2C0.006%2C0.002%2C0.008%2C0.004%20c0.027%2C0.004%2C0.057%2C0.009%2C0.088%2C0.011c2.12%2C0.316%2C3.203%2C0.915%2C3.73%2C1.337c-0.527%2C0.424-1.61%2C1.021-3.731%2C1.339%20c-0.029%2C0.003-0.058%2C0.007-0.087%2C0.012c-0.002%2C0.002-0.004%2C0.002-0.007%2C0.003c-0.341%2C0.062-0.684%2C0.187-1.013%2C0.374%20c-0.74%2C0.425-1.246%2C1.089-1.437%2C1.787c-0.149%2C0.555-0.105%2C1.133%2C0.181%2C1.632c0.011%2C0.018%2C0.021%2C0.033%2C0.033%2C0.049l0.883%2C0.783%20c0.765%2C0.366%2C1.775%2C0.328%2C2.67-0.184c0.744-0.425%2C1.248-1.088%2C1.439-1.786c0.148-0.552%2C0.104-1.126-0.176-1.62l2.573-1.473%20c0.573%2C0.287%2C2.299%2C1.292%2C2.299%2C1.292s3.602%2C1.445%2C4.241%2C1.812c0.773%2C0.191%2C0.566-0.151%2C0.566-0.151L12.285%2C9.711z%20M5.571%2C6.482%20C5.279%2C6.993%2C4.425%2C7.076%2C3.705%2C6.664C3.282%2C6.424%2C2.966%2C6.039%2C2.856%2C5.64C2.81%2C5.464%2C2.778%2C5.203%2C2.917%2C4.963%20c0.291-0.51%2C1.146-0.593%2C1.866-0.182C5.21%2C5.027%2C5.521%2C5.4%2C5.632%2C5.807C5.679%2C5.98%2C5.708%2C6.242%2C5.571%2C6.482z%20M5.632%2C13.159%20c-0.111%2C0.406-0.422%2C0.778-0.848%2C1.025c-0.719%2C0.409-1.576%2C0.327-1.867-0.184c-0.137-0.239-0.106-0.499-0.06-0.676%20c0.108-0.398%2C0.426-0.781%2C0.847-1.022c0.72-0.412%2C1.574-0.329%2C1.866%2C0.181C5.708%2C12.723%2C5.679%2C12.983%2C5.632%2C13.159z%20M16.181%2C5.139%20c-0.448%2C0.258-4.435%2C1.9-4.435%2C1.9s-1.556%2C0.855-2.104%2C1.13l0.937%2C0.843l2.057-0.229l4.11-3.638%20C16.745%2C5.146%2C17.013%2C4.664%2C16.181%2C5.139z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E%20');
  227. }
  228. .x6-widget-handle-direction {
  229. background-image: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3C!DOCTYPE%20svg%20%20PUBLIC%20'-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN'%20%20'http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd'%3E%3Csvg%20id%3D%22Layer_1%22%20style%3D%22enable-background%3Anew%200%200%20512%20512%3B%22%20version%3D%221.1%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%236A6C8A%3Bstroke%3A%236A6C8A%3Bstroke-width%3A30%7D%0A%09.dot%7Bfill%3A%236A6C8A%3B%7D%0A%3C%2Fstyle%3E%3Cg%3E%3Cg%20id%3D%22XMLID_475_%22%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M133.1%2C277.1c1.8%2C0%2C3.7-0.6%2C5.4-1.7c4.1-3%2C5-8.7%2C2-12.8c-3-4.1-8.7-5-12.8-2c0%2C0%2C0%2C0%2C0%2C0%20%20%20%20%20c-4.1%2C3-5%2C8.7-2%2C12.8C127.5%2C275.8%2C130.3%2C277.1%2C133.1%2C277.1z%22%20id%3D%22XMLID_489_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M138.5%2C359.6c-4.1-3-9.8-2.1-12.8%2C2c-3%2C4.1-2.1%2C9.8%2C2%2C12.8c1.6%2C1.2%2C3.5%2C1.7%2C5.4%2C1.7%20%20%20%20%20c2.8%2C0%2C5.6-1.3%2C7.4-3.7C143.5%2C368.3%2C142.6%2C362.6%2C138.5%2C359.6z%22%20id%3D%22XMLID_726_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M108.1%2C327.7c-4.8%2C1.6-7.4%2C6.7-5.9%2C11.5c1.3%2C3.9%2C4.8%2C6.3%2C8.7%2C6.3c0.9%2C0%2C1.9-0.1%2C2.8-0.4%20%20%20%20%20c4.8-1.6%2C7.4-6.7%2C5.9-11.5C118%2C328.8%2C112.9%2C326.2%2C108.1%2C327.7z%22%20id%3D%22XMLID_776_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M108.1%2C307.3c0.9%2C0.3%2C1.9%2C0.4%2C2.8%2C0.4c3.8%2C0%2C7.4-2.4%2C8.7-6.3c1.6-4.8-1.1-9.9-5.9-11.5%20%20%20%20%20c-4.8-1.6-9.9%2C1.1-11.5%2C5.9C100.7%2C300.6%2C103.3%2C305.7%2C108.1%2C307.3z%22%20id%3D%22XMLID_777_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M169.2%2C265.4c2.4%2C0%2C4.7-1%2C6.5-2.6c1.7-1.7%2C2.7-4.1%2C2.7-6.5c0-2.4-1-4.8-2.7-6.5%20%20%20%20%20c-1.7-1.7-4.1-2.7-6.5-2.7s-4.7%2C1-6.5%2C2.7c-1.7%2C1.7-2.7%2C4-2.7%2C6.5c0%2C2.4%2C1%2C4.7%2C2.7%2C6.5C164.4%2C264.4%2C166.8%2C265.4%2C169.2%2C265.4z%22%20id%3D%22XMLID_797_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M247.7%2C256.3c0-5-4.1-9.1-9.1-9.1c-5%2C0-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20C243.7%2C265.4%2C247.7%2C261.3%2C247.7%2C256.3z%22%20id%3D%22XMLID_798_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M213%2C256.3c0-5-4.1-9.1-9.1-9.1c-5%2C0-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20C208.9%2C265.4%2C213%2C261.3%2C213%2C256.3z%22%20id%3D%22XMLID_799_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M317.2%2C256.3c0-5-4.1-9.1-9.1-9.1c-5%2C0-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20C313.1%2C265.4%2C317.2%2C261.3%2C317.2%2C256.3z%22%20id%3D%22XMLID_800_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M282.5%2C256.3c0-5-4.1-9.1-9.1-9.1s-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20S282.5%2C261.3%2C282.5%2C256.3z%22%20id%3D%22XMLID_801_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M401.1%2C185.2c0.9%2C0%2C1.9-0.1%2C2.8-0.5c4.8-1.6%2C7.4-6.7%2C5.9-11.5c-1.6-4.8-6.7-7.4-11.5-5.8%20%20%20%20%20c-4.8%2C1.6-7.4%2C6.7-5.8%2C11.5C393.6%2C182.8%2C397.2%2C185.2%2C401.1%2C185.2z%22%20id%3D%22XMLID_802_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M403.9%2C205.2c-4.8-1.6-9.9%2C1-11.5%2C5.9l0%2C0c-1.6%2C4.8%2C1.1%2C9.9%2C5.9%2C11.5%20%20%20%20%20c0.9%2C0.3%2C1.9%2C0.5%2C2.8%2C0.5c3.9%2C0%2C7.4-2.5%2C8.7-6.3c0%2C0%2C0%2C0%2C0%2C0C411.3%2C211.9%2C408.7%2C206.8%2C403.9%2C205.2z%22%20id%3D%22XMLID_803_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M373.5%2C237.2L373.5%2C237.2c-4.1%2C3-5%2C8.7-2%2C12.8c1.8%2C2.4%2C4.6%2C3.7%2C7.4%2C3.7%20%20%20%20%20c1.8%2C0%2C3.7-0.6%2C5.4-1.8c4.1-3%2C4.9-8.7%2C2-12.8C383.3%2C235.1%2C377.6%2C234.2%2C373.5%2C237.2z%22%20id%3D%22XMLID_804_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M373.5%2C152.9c1.6%2C1.2%2C3.5%2C1.8%2C5.4%2C1.8c2.8%2C0%2C5.6-1.3%2C7.4-3.8c3-4.1%2C2.1-9.8-2-12.7%20%20%20%20%20c-4.1-3-9.8-2.1-12.7%2C2C368.5%2C144.2%2C369.4%2C149.9%2C373.5%2C152.9z%22%20id%3D%22XMLID_805_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M342.8%2C247.1c-2.4%2C0-4.8%2C1-6.5%2C2.7c-1.7%2C1.7-2.7%2C4-2.7%2C6.5c0%2C2.4%2C1%2C4.7%2C2.7%2C6.4%20%20%20%20%20c1.7%2C1.7%2C4%2C2.7%2C6.5%2C2.7c2.4%2C0%2C4.7-1%2C6.5-2.7c1.7-1.7%2C2.7-4%2C2.7-6.4c0-2.4-1-4.8-2.7-6.5C347.6%2C248.1%2C345.2%2C247.1%2C342.8%2C247.1z%22%20id%3D%22XMLID_806_%22%2F%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M342.8%2C124.7H206.6l36.4-36.4c3.6-3.6%2C3.6-9.3%2C0-12.9c-3.6-3.6-9.3-3.6-12.9%2C0l-51.5%2C51.5%20%20%20%20%20c-1.9%2C1.9-2.8%2C4.4-2.7%2C6.9c-0.1%2C2.5%2C0.7%2C5%2C2.7%2C6.9l51.5%2C51.5c1.8%2C1.8%2C4.1%2C2.7%2C6.5%2C2.7c2.3%2C0%2C4.7-0.9%2C6.5-2.7%20%20%20%20%20c3.6-3.6%2C3.6-9.3%2C0-12.9l-36.4-36.4h136.1c0%2C0%2C0.1%2C0%2C0.1%2C0c0.6%2C0%2C1.2-0.1%2C1.8-0.2c0.2%2C0%2C0.4-0.1%2C0.6-0.1c0.1%2C0%2C0.2%2C0%2C0.3-0.1%20%20%20%20%20c3.2-1%2C5.6-3.6%2C6.3-6.9c0.1-0.6%2C0.2-1.2%2C0.2-1.8c0-0.6-0.1-1.2-0.2-1.8C351%2C127.8%2C347.3%2C124.7%2C342.8%2C124.7z%22%20id%3D%22XMLID_807_%22%2F%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M322.1%2C371.3l-51.5-51.5c-3.6-3.6-9.3-3.6-12.9%2C0c-3.6%2C3.6-3.6%2C9.3%2C0%2C12.9l36.9%2C36.9H169.2%20%20%20%20%20c-2.8%2C0-5.4%2C1.3-7%2C3.3c-0.1%2C0.1-0.2%2C0.2-0.3%2C0.4c-0.1%2C0.1-0.2%2C0.2-0.2%2C0.3c-0.1%2C0.1-0.1%2C0.2-0.2%2C0.4c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.4%20%20%20%20%20c0%2C0.1-0.1%2C0.2-0.1%2C0.2c-0.1%2C0.2-0.2%2C0.4-0.3%2C0.6c0%2C0%2C0%2C0%2C0%2C0.1c-0.4%2C1.1-0.7%2C2.2-0.7%2C3.4c0%2C1.5%2C0.4%2C2.9%2C1%2C4.2c0%2C0%2C0%2C0.1%2C0.1%2C0.1%20%20%20%20%20c0.1%2C0.1%2C0.1%2C0.2%2C0.2%2C0.3c0.4%2C0.7%2C0.9%2C1.3%2C1.4%2C1.8c0.4%2C0.4%2C0.7%2C0.7%2C1.2%2C1c0.1%2C0.1%2C0.1%2C0.1%2C0.2%2C0.2c0%2C0%2C0.1%2C0%2C0.1%2C0.1%20%20%20%20%20c1.4%2C0.9%2C3.1%2C1.5%2C5%2C1.5h124.4l-36%2C36c-3.6%2C3.6-3.6%2C9.3%2C0%2C12.9c1.8%2C1.8%2C4.1%2C2.7%2C6.5%2C2.7c2.3%2C0%2C4.7-0.9%2C6.5-2.7l51.5-51.5%20%20%20%20%20c1.9-1.9%2C2.8-4.4%2C2.7-6.9C324.8%2C375.7%2C324%2C373.2%2C322.1%2C371.3z%22%20id%3D%22XMLID_808_%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  230. }
  231. .x6-widget-handle-direction:hover {
  232. background-image: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3C!DOCTYPE%20svg%20%20PUBLIC%20'-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN'%20%20'http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd'%3E%3Csvg%20id%3D%22Layer_1%22%20style%3D%22enable-background%3Anew%200%200%20512%20512%3B%22%20version%3D%221.1%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23FD6EB6%3Bstroke%3A%23FD6EB6%3Bstroke-width%3A30%7D%0A%09.dot%7Bfill%3A%23FD6EB6%3B%7D%0A%3C%2Fstyle%3E%3Cg%3E%3Cg%20id%3D%22XMLID_475_%22%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M133.1%2C277.1c1.8%2C0%2C3.7-0.6%2C5.4-1.7c4.1-3%2C5-8.7%2C2-12.8c-3-4.1-8.7-5-12.8-2c0%2C0%2C0%2C0%2C0%2C0%20%20%20%20%20c-4.1%2C3-5%2C8.7-2%2C12.8C127.5%2C275.8%2C130.3%2C277.1%2C133.1%2C277.1z%22%20id%3D%22XMLID_489_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M138.5%2C359.6c-4.1-3-9.8-2.1-12.8%2C2c-3%2C4.1-2.1%2C9.8%2C2%2C12.8c1.6%2C1.2%2C3.5%2C1.7%2C5.4%2C1.7%20%20%20%20%20c2.8%2C0%2C5.6-1.3%2C7.4-3.7C143.5%2C368.3%2C142.6%2C362.6%2C138.5%2C359.6z%22%20id%3D%22XMLID_726_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M108.1%2C327.7c-4.8%2C1.6-7.4%2C6.7-5.9%2C11.5c1.3%2C3.9%2C4.8%2C6.3%2C8.7%2C6.3c0.9%2C0%2C1.9-0.1%2C2.8-0.4%20%20%20%20%20c4.8-1.6%2C7.4-6.7%2C5.9-11.5C118%2C328.8%2C112.9%2C326.2%2C108.1%2C327.7z%22%20id%3D%22XMLID_776_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M108.1%2C307.3c0.9%2C0.3%2C1.9%2C0.4%2C2.8%2C0.4c3.8%2C0%2C7.4-2.4%2C8.7-6.3c1.6-4.8-1.1-9.9-5.9-11.5%20%20%20%20%20c-4.8-1.6-9.9%2C1.1-11.5%2C5.9C100.7%2C300.6%2C103.3%2C305.7%2C108.1%2C307.3z%22%20id%3D%22XMLID_777_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M169.2%2C265.4c2.4%2C0%2C4.7-1%2C6.5-2.6c1.7-1.7%2C2.7-4.1%2C2.7-6.5c0-2.4-1-4.8-2.7-6.5%20%20%20%20%20c-1.7-1.7-4.1-2.7-6.5-2.7s-4.7%2C1-6.5%2C2.7c-1.7%2C1.7-2.7%2C4-2.7%2C6.5c0%2C2.4%2C1%2C4.7%2C2.7%2C6.5C164.4%2C264.4%2C166.8%2C265.4%2C169.2%2C265.4z%22%20id%3D%22XMLID_797_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M247.7%2C256.3c0-5-4.1-9.1-9.1-9.1c-5%2C0-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20C243.7%2C265.4%2C247.7%2C261.3%2C247.7%2C256.3z%22%20id%3D%22XMLID_798_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M213%2C256.3c0-5-4.1-9.1-9.1-9.1c-5%2C0-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20C208.9%2C265.4%2C213%2C261.3%2C213%2C256.3z%22%20id%3D%22XMLID_799_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M317.2%2C256.3c0-5-4.1-9.1-9.1-9.1c-5%2C0-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20C313.1%2C265.4%2C317.2%2C261.3%2C317.2%2C256.3z%22%20id%3D%22XMLID_800_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M282.5%2C256.3c0-5-4.1-9.1-9.1-9.1s-9.1%2C4.1-9.1%2C9.1c0%2C5%2C4.1%2C9.1%2C9.1%2C9.1%20%20%20%20%20S282.5%2C261.3%2C282.5%2C256.3z%22%20id%3D%22XMLID_801_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M401.1%2C185.2c0.9%2C0%2C1.9-0.1%2C2.8-0.5c4.8-1.6%2C7.4-6.7%2C5.9-11.5c-1.6-4.8-6.7-7.4-11.5-5.8%20%20%20%20%20c-4.8%2C1.6-7.4%2C6.7-5.8%2C11.5C393.6%2C182.8%2C397.2%2C185.2%2C401.1%2C185.2z%22%20id%3D%22XMLID_802_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M403.9%2C205.2c-4.8-1.6-9.9%2C1-11.5%2C5.9l0%2C0c-1.6%2C4.8%2C1.1%2C9.9%2C5.9%2C11.5%20%20%20%20%20c0.9%2C0.3%2C1.9%2C0.5%2C2.8%2C0.5c3.9%2C0%2C7.4-2.5%2C8.7-6.3c0%2C0%2C0%2C0%2C0%2C0C411.3%2C211.9%2C408.7%2C206.8%2C403.9%2C205.2z%22%20id%3D%22XMLID_803_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M373.5%2C237.2L373.5%2C237.2c-4.1%2C3-5%2C8.7-2%2C12.8c1.8%2C2.4%2C4.6%2C3.7%2C7.4%2C3.7%20%20%20%20%20c1.8%2C0%2C3.7-0.6%2C5.4-1.8c4.1-3%2C4.9-8.7%2C2-12.8C383.3%2C235.1%2C377.6%2C234.2%2C373.5%2C237.2z%22%20id%3D%22XMLID_804_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M373.5%2C152.9c1.6%2C1.2%2C3.5%2C1.8%2C5.4%2C1.8c2.8%2C0%2C5.6-1.3%2C7.4-3.8c3-4.1%2C2.1-9.8-2-12.7%20%20%20%20%20c-4.1-3-9.8-2.1-12.7%2C2C368.5%2C144.2%2C369.4%2C149.9%2C373.5%2C152.9z%22%20id%3D%22XMLID_805_%22%2F%3E%0A%3Cpath%20class%3D%22dot%22%20d%3D%22M342.8%2C247.1c-2.4%2C0-4.8%2C1-6.5%2C2.7c-1.7%2C1.7-2.7%2C4-2.7%2C6.5c0%2C2.4%2C1%2C4.7%2C2.7%2C6.4%20%20%20%20%20c1.7%2C1.7%2C4%2C2.7%2C6.5%2C2.7c2.4%2C0%2C4.7-1%2C6.5-2.7c1.7-1.7%2C2.7-4%2C2.7-6.4c0-2.4-1-4.8-2.7-6.5C347.6%2C248.1%2C345.2%2C247.1%2C342.8%2C247.1z%22%20id%3D%22XMLID_806_%22%2F%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M342.8%2C124.7H206.6l36.4-36.4c3.6-3.6%2C3.6-9.3%2C0-12.9c-3.6-3.6-9.3-3.6-12.9%2C0l-51.5%2C51.5%20%20%20%20%20c-1.9%2C1.9-2.8%2C4.4-2.7%2C6.9c-0.1%2C2.5%2C0.7%2C5%2C2.7%2C6.9l51.5%2C51.5c1.8%2C1.8%2C4.1%2C2.7%2C6.5%2C2.7c2.3%2C0%2C4.7-0.9%2C6.5-2.7%20%20%20%20%20c3.6-3.6%2C3.6-9.3%2C0-12.9l-36.4-36.4h136.1c0%2C0%2C0.1%2C0%2C0.1%2C0c0.6%2C0%2C1.2-0.1%2C1.8-0.2c0.2%2C0%2C0.4-0.1%2C0.6-0.1c0.1%2C0%2C0.2%2C0%2C0.3-0.1%20%20%20%20%20c3.2-1%2C5.6-3.6%2C6.3-6.9c0.1-0.6%2C0.2-1.2%2C0.2-1.8c0-0.6-0.1-1.2-0.2-1.8C351%2C127.8%2C347.3%2C124.7%2C342.8%2C124.7z%22%20id%3D%22XMLID_807_%22%2F%3E%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M322.1%2C371.3l-51.5-51.5c-3.6-3.6-9.3-3.6-12.9%2C0c-3.6%2C3.6-3.6%2C9.3%2C0%2C12.9l36.9%2C36.9H169.2%20%20%20%20%20c-2.8%2C0-5.4%2C1.3-7%2C3.3c-0.1%2C0.1-0.2%2C0.2-0.3%2C0.4c-0.1%2C0.1-0.2%2C0.2-0.2%2C0.3c-0.1%2C0.1-0.1%2C0.2-0.2%2C0.4c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.4%20%20%20%20%20c0%2C0.1-0.1%2C0.2-0.1%2C0.2c-0.1%2C0.2-0.2%2C0.4-0.3%2C0.6c0%2C0%2C0%2C0%2C0%2C0.1c-0.4%2C1.1-0.7%2C2.2-0.7%2C3.4c0%2C1.5%2C0.4%2C2.9%2C1%2C4.2c0%2C0%2C0%2C0.1%2C0.1%2C0.1%20%20%20%20%20c0.1%2C0.1%2C0.1%2C0.2%2C0.2%2C0.3c0.4%2C0.7%2C0.9%2C1.3%2C1.4%2C1.8c0.4%2C0.4%2C0.7%2C0.7%2C1.2%2C1c0.1%2C0.1%2C0.1%2C0.1%2C0.2%2C0.2c0%2C0%2C0.1%2C0%2C0.1%2C0.1%20%20%20%20%20c1.4%2C0.9%2C3.1%2C1.5%2C5%2C1.5h124.4l-36%2C36c-3.6%2C3.6-3.6%2C9.3%2C0%2C12.9c1.8%2C1.8%2C4.1%2C2.7%2C6.5%2C2.7c2.3%2C0%2C4.7-0.9%2C6.5-2.7l51.5-51.5%20%20%20%20%20c1.9-1.9%2C2.8-4.4%2C2.7-6.9C324.8%2C375.7%2C324%2C373.2%2C322.1%2C371.3z%22%20id%3D%22XMLID_808_%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  233. }
  234. .x6-widget-handle-surround .x6-widget-handle-animate .x6-widget-handle {
  235. transition: background-size 80ms, width 80ms, height 80ms, top 150ms, left 150ms, bottom 150ms, right 150ms;
  236. }
  237. .x6-widget-handle-surround .x6-widget-handle-pos-se {
  238. right: -25px;
  239. bottom: -25px;
  240. }
  241. .x6-widget-handle-surround .x6-widget-handle-pos-nw {
  242. top: -21px;
  243. left: -25px;
  244. }
  245. .x6-widget-handle-surround .x6-widget-handle-pos-n {
  246. top: -22px;
  247. left: 50%;
  248. margin-left: -10px;
  249. }
  250. .x6-widget-handle-surround .x6-widget-handle-pos-e {
  251. top: -webkit-calc(40%);
  252. top: calc(50% - 10px);
  253. right: -25px;
  254. }
  255. .x6-widget-handle-surround .x6-widget-handle-pos-ne {
  256. top: -21px;
  257. right: -25px;
  258. }
  259. .x6-widget-handle-surround .x6-widget-handle-pos-w {
  260. top: 50%;
  261. left: -25px;
  262. margin-top: -10px;
  263. }
  264. .x6-widget-handle-surround .x6-widget-handle-pos-sw {
  265. bottom: -25px;
  266. left: -25px;
  267. }
  268. .x6-widget-handle-surround .x6-widget-handle-pos-s {
  269. bottom: -24px;
  270. left: 50%;
  271. margin-left: -10px;
  272. }
  273. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle {
  274. width: 15px;
  275. height: 15px;
  276. font-size: 15px;
  277. background-size: 15px 15px;
  278. }
  279. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-se {
  280. right: -19px;
  281. bottom: -19px;
  282. }
  283. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-nw {
  284. top: -19px;
  285. left: -19px;
  286. }
  287. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-n {
  288. top: -19px;
  289. margin-left: -7.5px;
  290. }
  291. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-e {
  292. top: -webkit-calc(42%);
  293. top: calc(50% - 8px);
  294. right: -19px;
  295. }
  296. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-ne {
  297. top: -19px;
  298. right: -19px;
  299. }
  300. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-w {
  301. left: -19px;
  302. margin-top: -8px;
  303. }
  304. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-sw {
  305. bottom: -19px;
  306. left: -19px;
  307. }
  308. .x6-widget-handle-surround .x6-widget-handle-small .x6-widget-handle-pos-s {
  309. bottom: -19px;
  310. margin-left: -7.5px;
  311. }
  312. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle {
  313. width: 10px;
  314. height: 10px;
  315. font-size: 10px;
  316. background-size: 10px 10px;
  317. }
  318. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-se {
  319. right: -15px;
  320. bottom: -13px;
  321. }
  322. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-nw {
  323. top: -13px;
  324. left: -15px;
  325. }
  326. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-n {
  327. top: -13px;
  328. margin-left: -5px;
  329. }
  330. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-e {
  331. top: -webkit-calc(45%);
  332. top: calc(50% - 5px);
  333. right: -15px;
  334. }
  335. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-ne {
  336. top: -13px;
  337. right: -15px;
  338. }
  339. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-w {
  340. left: -15px;
  341. margin-top: -5px;
  342. }
  343. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-sw {
  344. bottom: -13px;
  345. left: -15px;
  346. }
  347. .x6-widget-handle-surround .x6-widget-handle-tiny .x6-widget-handle-pos-s {
  348. bottom: -13px;
  349. margin-left: -5px;
  350. }
  351. .x6-widget-handle-toolbar {
  352. position: absolute;
  353. top: -50px;
  354. display: table-row;
  355. padding: 7px 5px;
  356. }
  357. .x6-widget-handle-toolbar::after {
  358. position: absolute;
  359. top: 100%;
  360. left: 10px;
  361. width: 0;
  362. height: 0;
  363. margin-top: 4px;
  364. border-right: 10px solid transparent;
  365. border-left: 10px solid transparent;
  366. content: '';
  367. }
  368. .x6-widget-handle-toolbar .x6-widget-handle {
  369. position: relative;
  370. display: table-cell;
  371. min-width: 20px;
  372. margin: 0 2px;
  373. background-position: 3px 3px;
  374. background-size: 16px 16px;
  375. }
  376. .x6-widget-handle-toolbar .x6-widget-handle::after {
  377. position: absolute;
  378. bottom: -11px;
  379. width: 100%;
  380. content: '';
  381. }
  382. .x6-widget-handle-pie {
  383. position: absolute;
  384. top: -webkit-calc(0%);
  385. top: calc(50% - 50px);
  386. right: -50px;
  387. z-index: 1;
  388. display: none;
  389. width: 100px;
  390. height: 100px;
  391. margin: -2px -2px 0 0;
  392. border-radius: 50%;
  393. cursor: default;
  394. pointer-events: visiblePainted;
  395. }
  396. .x6-widget-handle-pie .x6-widget-handle {
  397. width: 1px;
  398. height: auto;
  399. pointer-events: visiblePainted;
  400. }
  401. .x6-widget-handle-pie-slice-svg {
  402. width: 100%;
  403. height: 100%;
  404. overflow: visible !important;
  405. }
  406. .x6-widget-handle-pie-slice-img,
  407. .x6-widget-handle-pie-slice-txt {
  408. display: none;
  409. pointer-events: none;
  410. }
  411. .x6-widget-handle-pie[data-pie-toggle-position='e'] {
  412. top: calc(50% - 50px);
  413. right: -50px;
  414. left: auto;
  415. }
  416. .x6-widget-handle-pie[data-pie-toggle-position='w'] {
  417. top: calc(50% - 50px);
  418. right: auto;
  419. left: -52px;
  420. }
  421. .x6-widget-handle-pie[data-pie-toggle-position='n'] {
  422. top: -50px;
  423. right: auto;
  424. bottom: auto;
  425. left: calc(50% - 52px);
  426. }
  427. .x6-widget-handle-pie[data-pie-toggle-position='s'] {
  428. top: auto;
  429. right: auto;
  430. bottom: -52px;
  431. left: calc(50% - 52px);
  432. }
  433. .x6-widget-handle-pie-opened {
  434. display: block;
  435. animation: halo-pie-visibility 0.1s, halo-pie-opening 0.1s;
  436. animation-timing-function: step-end, ease;
  437. animation-delay: 0s, 0.1s;
  438. }
  439. .x6-widget-handle-pie-toggle {
  440. position: absolute;
  441. top: -webkit-calc(35%);
  442. top: calc(50% - 15px);
  443. right: -15px;
  444. z-index: 2;
  445. display: block;
  446. box-sizing: border-box;
  447. width: 30px;
  448. height: 30px;
  449. background-repeat: no-repeat;
  450. background-position: center;
  451. background-size: 20px 20px;
  452. border-radius: 50%;
  453. cursor: pointer;
  454. user-select: none;
  455. pointer-events: visiblePainted;
  456. -webkit-user-drag: none;
  457. user-drag: none;
  458. /* stylelint-disable-line */
  459. }
  460. .x6-widget-handle-pie-toggle-pos-e {
  461. top: -webkit-calc(35%);
  462. top: calc(50% - 15px);
  463. right: -15px;
  464. bottom: auto;
  465. left: auto;
  466. }
  467. .x6-widget-handle-pie-toggle-pos-w {
  468. top: -webkit-calc(35%);
  469. top: calc(50% - 15px);
  470. right: auto;
  471. bottom: auto;
  472. left: -15px;
  473. }
  474. .x6-widget-handle-pie-toggle-pos-n {
  475. top: -15px;
  476. right: auto;
  477. bottom: auto;
  478. left: -webkit-calc(35%);
  479. left: calc(50% - 15px);
  480. }
  481. .x6-widget-handle-pie-toggle-pos-s {
  482. top: auto;
  483. right: auto;
  484. bottom: -15px;
  485. left: -webkit-calc(35%);
  486. left: calc(50% - 15px);
  487. }
  488. .x6-widget-handle-pie-toggle-opened {
  489. transition: 0.1s background-image;
  490. }
  491. .x6-widget-handle-toolbar {
  492. position: static;
  493. display: inline-block;
  494. margin-top: -50px;
  495. margin-left: 45px;
  496. white-space: nowrap;
  497. vertical-align: top;
  498. background-color: #f5f5f5;
  499. border-bottom: 3px solid #333;
  500. border-radius: 5px;
  501. box-shadow: 0 1px 2px #222;
  502. }
  503. .x6-widget-handle-toolbar::after {
  504. top: -12px;
  505. left: 55px;
  506. margin-top: 0;
  507. border-top: 6px solid #333;
  508. border-right: 10px solid transparent;
  509. border-left: 10px solid transparent;
  510. }
  511. .x6-widget-handle-toolbar .x6-widget-handle {
  512. display: inline-block;
  513. vertical-align: top;
  514. }
  515. .x6-widget-handle-toolbar .x6-widget-handle:hover::after {
  516. border-bottom: 4px solid #fc6cb8;
  517. }
  518. .x6-widget-handle-toolbar .x6-widget-handle-rotate {
  519. position: absolute;
  520. top: 100%;
  521. right: 100%;
  522. margin-top: 3px;
  523. margin-right: 6px;
  524. }
  525. .x6-widget-handle-toolbar .x6-widget-handle-remove:hover::after,
  526. .x6-widget-handle-toolbar .x6-widget-handle-rotate:hover::after {
  527. border-bottom: none;
  528. }
  529. .x6-widget-handle-toolbar .x6-widget-handle + .x6-widget-handle {
  530. margin-left: 4px;
  531. }
  532. .x6-widget-handle-pie {
  533. box-sizing: content-box;
  534. background-color: #f5f5f5;
  535. border: 2px solid #404040;
  536. }
  537. .x6-widget-handle-pie-slice {
  538. fill: transparent;
  539. stroke: #e9e9e9;
  540. stroke-width: 1;
  541. }
  542. .x6-widget-handle-pie-slice:hover {
  543. fill: #fff;
  544. }
  545. .x6-widget-handle-pie-slice-img {
  546. display: block;
  547. }
  548. .x6-widget-handle-selected .x6-widget-handle-pie-slice {
  549. fill: #fff;
  550. }
  551. .x6-widget-handle-pie-toggle {
  552. background-color: #f6f6f6;
  553. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20height%3D%2216px%22%20id%3D%22Layer_1%22%20style%3D%22enable-background%3Anew%200%200%2016%2016%3B%22%20version%3D%221.1%22%20viewBox%3D%220%200%2016%2016%22%20width%3D%2216px%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cpath%20fill%3D%22%236A6C8A%22%20d%3D%22M15%2C6h-5V1c0-0.55-0.45-1-1-1H7C6.45%2C0%2C6%2C0.45%2C6%2C1v5H1C0.45%2C6%2C0%2C6.45%2C0%2C7v2c0%2C0.55%2C0.45%2C1%2C1%2C1h5v5c0%2C0.55%2C0.45%2C1%2C1%2C1h2%20c0.55%2C0%2C1-0.45%2C1-1v-5h5c0.55%2C0%2C1-0.45%2C1-1V7C16%2C6.45%2C15.55%2C6%2C15%2C6z%22%2F%3E%3C%2Fsvg%3E');
  554. background-size: 16px 16px;
  555. border: 2px solid #3b425f;
  556. }
  557. .x6-widget-handle-pie-toggle:hover {
  558. background-color: #fff;
  559. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20height%3D%2216px%22%20id%3D%22Layer_1%22%20style%3D%22enable-background%3Anew%200%200%2016%2016%3B%22%20version%3D%221.1%22%20viewBox%3D%220%200%2016%2016%22%20width%3D%2216px%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cpath%20fill%3D%22%23FD6EB6%22%20d%3D%22M15%2C6h-5V1c0-0.55-0.45-1-1-1H7C6.45%2C0%2C6%2C0.45%2C6%2C1v5H1C0.45%2C6%2C0%2C6.45%2C0%2C7v2c0%2C0.55%2C0.45%2C1%2C1%2C1h5v5c0%2C0.55%2C0.45%2C1%2C1%2C1h2%20c0.55%2C0%2C1-0.45%2C1-1v-5h5c0.55%2C0%2C1-0.45%2C1-1V7C16%2C6.45%2C15.55%2C6%2C15%2C6z%22%2F%3E%3C%2Fsvg%3E');
  560. border-color: #fd6eb6;
  561. }
  562. .x6-widget-handle-pie-toggle-opened {
  563. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3Adc%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F%22%20xmlns%3Acc%3D%22http%3A%2F%2Fcreativecommons.org%2Fns%23%22%20xmlns%3Ardf%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%22%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20id%3D%22Layer_1%22%20xml%3Aspace%3D%22preserve%22%3E%3Cmetadata%20id%3D%22metadata9%22%3E%3Crdf%3ARDF%3E%3Ccc%3AWork%20rdf%3Aabout%3D%22%22%3E%3Cdc%3Aformat%3Eimage%2Fsvg%2Bxml%3C%2Fdc%3Aformat%3E%3Cdc%3Atype%20rdf%3Aresource%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Fdcmitype%2FStillImage%22%20%2F%3E%3Cdc%3Atitle%3E%3C%2Fdc%3Atitle%3E%3C%2Fcc%3AWork%3E%3C%2Frdf%3ARDF%3E%3C%2Fmetadata%3E%3Cdefs%20id%3D%22defs7%22%20%2F%3E%3Cpath%20d%3D%22M%2015%2C6%2010%2C6%20C%201.0301983%2C6.00505%2015.002631%2C6.011353%206%2C6%20L%201%2C6%20C%200.45%2C6%200%2C6.45%200%2C7%20l%200%2C2%20c%200%2C0.55%200.45%2C1%201%2C1%20l%205%2C0%20c%208.988585%2C-0.019732%20-5.02893401%2C-0.018728%204%2C0%20l%205%2C0%20c%200.55%2C0%201%2C-0.45%201%2C-1%20L%2016%2C7%20C%2016%2C6.45%2015.55%2C6%2015%2C6%20z%22%20id%3D%22path3%22%20style%3D%22fill%3A%236a6c8a%22%20%2F%3E%3C%2Fsvg%3E');
  564. }
  565. .x6-widget-handle-pie-toggle-opened:hover {
  566. background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3Adc%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F%22%20xmlns%3Acc%3D%22http%3A%2F%2Fcreativecommons.org%2Fns%23%22%20xmlns%3Ardf%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%22%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20id%3D%22Layer_1%22%20xml%3Aspace%3D%22preserve%22%3E%3Cmetadata%20id%3D%22metadata9%22%3E%3Crdf%3ARDF%3E%3Ccc%3AWork%20rdf%3Aabout%3D%22%22%3E%3Cdc%3Aformat%3Eimage%2Fsvg%2Bxml%3C%2Fdc%3Aformat%3E%3Cdc%3Atype%20rdf%3Aresource%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Fdcmitype%2FStillImage%22%20%2F%3E%3Cdc%3Atitle%3E%3C%2Fdc%3Atitle%3E%3C%2Fcc%3AWork%3E%3C%2Frdf%3ARDF%3E%3C%2Fmetadata%3E%3Cdefs%20id%3D%22defs7%22%20%2F%3E%3Cpath%20d%3D%22M%2015%2C6%2010%2C6%20C%201.0301983%2C6.00505%2015.002631%2C6.011353%206%2C6%20L%201%2C6%20C%200.45%2C6%200%2C6.45%200%2C7%20l%200%2C2%20c%200%2C0.55%200.45%2C1%201%2C1%20l%205%2C0%20c%208.988585%2C-0.019732%20-5.02893401%2C-0.018728%204%2C0%20l%205%2C0%20c%200.55%2C0%201%2C-0.45%201%2C-1%20L%2016%2C7%20C%2016%2C6.45%2015.55%2C6%2015%2C6%20z%22%20id%3D%22path3%22%20style%3D%22fill%3A%23FD6EB6%22%20%2F%3E%3C%2Fsvg%3E');
  567. }
  568. .x6-widget-dnd {
  569. position: absolute;
  570. top: -10000px;
  571. left: -10000px;
  572. z-index: 999999;
  573. display: none;
  574. cursor: move;
  575. opacity: 0.7;
  576. pointer-events: 'cursor';
  577. }
  578. .x6-widget-dnd.dragging {
  579. display: inline-block;
  580. }
  581. .x6-widget-dnd.dragging * {
  582. pointer-events: none !important;
  583. }
  584. .x6-widget-dnd .x6-graph {
  585. background: transparent;
  586. box-shadow: none;
  587. }
  588. .x6-widget-halo {
  589. position: absolute;
  590. pointer-events: none;
  591. }
  592. .x6-widget-halo-content {
  593. position: absolute;
  594. top: 100%;
  595. padding: 6px;
  596. font-size: 10px;
  597. line-height: 14px;
  598. text-align: center;
  599. border-radius: 6px;
  600. }
  601. .x6-widget-halo-handles + .x6-widget-halo-content {
  602. right: -20px;
  603. left: -20px;
  604. margin-top: 30px;
  605. }
  606. .x6-widget-halo-handles.x6-widget-handle-small + .x6-widget-halo-content {
  607. margin-top: 25px;
  608. }
  609. .x6-widget-halo-handles.x6-widget-handle-small + .x6-widget-halo-content {
  610. margin-top: 20px;
  611. }
  612. .x6-widget-halo-handles.x6-widget-handle-pie + .x6-widget-halo-content {
  613. right: 0;
  614. left: 0;
  615. margin-top: 10px;
  616. }
  617. .x6-widget-halo-content {
  618. color: #fff;
  619. background-color: #6a6b8a;
  620. }
  621. .x6-widget-halo.type-node .x6-widget-handle-toolbar .x6-widget-handle-remove {
  622. position: absolute;
  623. right: 100%;
  624. bottom: 100%;
  625. margin-right: 6px;
  626. margin-bottom: 3px;
  627. }
  628. .x6-widget-halo.type-edge .x6-widget-handle-surround .x6-widget-handle-remove {
  629. background-color: #fff;
  630. border-radius: 50%;
  631. }
  632. .x6-widget-halo.type-edge .x6-widget-handle-toolbar {
  633. margin-top: -60px;
  634. margin-left: -18px;
  635. }
  636. .x6-widget-halo.type-edge .x6-widget-handle-toolbar::after {
  637. top: -22px;
  638. left: -9px;
  639. }
  640. .x6-widget-minimap {
  641. position: relative;
  642. display: table-cell;
  643. box-sizing: border-box;
  644. overflow: hidden;
  645. text-align: center;
  646. vertical-align: middle;
  647. background-color: #fff;
  648. user-select: none;
  649. }
  650. .x6-widget-minimap .x6-graph {
  651. display: inline-block;
  652. box-shadow: 0 0 4px 0 #eee;
  653. cursor: pointer;
  654. }
  655. .x6-widget-minimap .x6-graph > svg {
  656. pointer-events: none;
  657. shape-rendering: optimizeSpeed;
  658. }
  659. .x6-widget-minimap .x6-graph .x6-node * {
  660. /* stylelint-disable-next-line */
  661. vector-effect: initial;
  662. }
  663. .x6-widget-minimap-viewport {
  664. position: absolute;
  665. box-sizing: content-box !important;
  666. margin: -2px 0 0 -2px;
  667. border: 2px solid #31d0c6;
  668. cursor: move;
  669. }
  670. .x6-widget-minimap-viewport-zoom {
  671. position: absolute;
  672. right: 0;
  673. bottom: 0;
  674. box-sizing: border-box;
  675. width: 12px;
  676. height: 12px;
  677. margin: 0 -6px -6px 0;
  678. background-color: #fff;
  679. border: 2px solid #31d0c6;
  680. border-radius: 50%;
  681. cursor: nwse-resize;
  682. }
  683. .x6-graph-scroller {
  684. position: relative;
  685. box-sizing: border-box;
  686. overflow: scroll;
  687. outline: none;
  688. }
  689. .x6-graph-scroller-content {
  690. position: relative;
  691. }
  692. .x6-graph-scroller-background {
  693. position: absolute;
  694. top: 0;
  695. right: 0;
  696. bottom: 0;
  697. left: 0;
  698. }
  699. .x6-graph-scroller .x6-graph {
  700. position: absolute;
  701. display: inline-block;
  702. margin: 0;
  703. box-shadow: none;
  704. }
  705. .x6-graph-scroller .x6-graph > svg {
  706. display: block;
  707. }
  708. .x6-graph-scroller.x6-graph-scroller-paged .x6-graph {
  709. box-shadow: 0 0 4px 0 #eee;
  710. }
  711. .x6-graph-scroller.x6-graph-scroller-pannable[data-panning='false'] {
  712. cursor: grab;
  713. cursor: -moz-grab;
  714. cursor: -webkit-grab;
  715. }
  716. .x6-graph-scroller.x6-graph-scroller-pannable[data-panning='true'] {
  717. cursor: grabbing;
  718. cursor: -moz-grabbing;
  719. cursor: -webkit-grabbing;
  720. user-select: none;
  721. }
  722. .x6-graph-pagebreak {
  723. position: absolute;
  724. top: 0;
  725. right: 0;
  726. bottom: 0;
  727. left: 0;
  728. }
  729. .x6-graph-pagebreak-vertical {
  730. position: absolute;
  731. top: 0;
  732. bottom: 0;
  733. box-sizing: border-box;
  734. width: 1px;
  735. border-left: 1px dashed #bdbdbd;
  736. }
  737. .x6-graph-pagebreak-horizontal {
  738. position: absolute;
  739. right: 0;
  740. left: 0;
  741. box-sizing: border-box;
  742. height: 1px;
  743. border-top: 1px dashed #bdbdbd;
  744. }
  745. .x6-widget-selection {
  746. position: absolute;
  747. display: none;
  748. width: 0;
  749. height: 0;
  750. touch-action: none;
  751. }
  752. .x6-widget-selection-rubberband {
  753. display: block;
  754. overflow: visible;
  755. opacity: 0.3;
  756. }
  757. .x6-widget-selection-selected {
  758. display: block;
  759. }
  760. .x6-widget-selection-box {
  761. cursor: move;
  762. }
  763. .x6-widget-selection-inner[data-selection-length='0'],
  764. .x6-widget-selection-inner[data-selection-length='1'] {
  765. display: none;
  766. }
  767. .x6-widget-selection-content {
  768. position: absolute;
  769. top: 100%;
  770. right: -20px;
  771. left: -20px;
  772. margin-top: 30px;
  773. padding: 6px;
  774. line-height: 14px;
  775. text-align: center;
  776. border-radius: 6px;
  777. }
  778. .x6-widget-selection-content:empty {
  779. display: none;
  780. }
  781. .x6-widget-selection-rubberband {
  782. background-color: #3498db;
  783. border: 2px solid #2980b9;
  784. }
  785. .x6-widget-selection-box {
  786. box-sizing: content-box !important;
  787. margin-top: -4px;
  788. margin-left: -4px;
  789. padding-right: 4px;
  790. padding-bottom: 4px;
  791. border: 2px dashed #feb663;
  792. box-shadow: 2px 2px 5px #d3d3d3;
  793. }
  794. .x6-widget-selection-inner {
  795. box-sizing: content-box !important;
  796. margin-top: -8px;
  797. margin-left: -8px;
  798. padding-right: 12px;
  799. padding-bottom: 12px;
  800. border: 2px solid #feb663;
  801. box-shadow: 2px 2px 5px #d3d3d3;
  802. }
  803. .x6-widget-selection-content {
  804. color: #fff;
  805. font-size: 10px;
  806. background-color: #6a6b8a;
  807. }
  808. .x6-widget-snapline {
  809. position: absolute;
  810. top: 0;
  811. right: 0;
  812. bottom: 0;
  813. left: 0;
  814. pointer-events: none;
  815. }
  816. .x6-widget-snapline-vertical,
  817. .x6-widget-snapline-horizontal {
  818. stroke: #2ecc71;
  819. stroke-width: 1px;
  820. }
  821. .x6-widget-stencil {
  822. position: absolute;
  823. top: 0;
  824. right: 0;
  825. bottom: 0;
  826. left: 0;
  827. }
  828. .x6-widget-stencil::after {
  829. position: absolute;
  830. top: 0;
  831. display: block;
  832. width: 100%;
  833. height: 20px;
  834. padding: 8px 0;
  835. line-height: 20px;
  836. text-align: center;
  837. opacity: 0;
  838. transition: top 0.1s linear, opacity 0.1s linear;
  839. content: ' ';
  840. pointer-events: none;
  841. }
  842. .x6-widget-stencil-content {
  843. position: absolute;
  844. top: 0;
  845. right: 0;
  846. bottom: 0;
  847. left: 0;
  848. height: auto;
  849. overflow-x: hidden;
  850. overflow-y: auto;
  851. }
  852. .x6-widget-stencil .x6-node [magnet]:not([magnet='passive']) {
  853. pointer-events: none;
  854. }
  855. .x6-widget-stencil-group {
  856. padding: 0;
  857. padding-bottom: 8px;
  858. overflow: hidden;
  859. user-select: none;
  860. }
  861. .x6-widget-stencil-group.collapsed {
  862. height: auto;
  863. padding-bottom: 0;
  864. }
  865. .x6-widget-stencil-group-title {
  866. position: relative;
  867. margin-top: 0;
  868. margin-bottom: 0;
  869. padding: 4px;
  870. cursor: pointer;
  871. }
  872. .x6-widget-stencil-title,
  873. .x6-widget-stencil-group > .x6-widget-stencil-group-title {
  874. overflow: hidden;
  875. white-space: nowrap;
  876. text-overflow: ellipsis;
  877. user-select: none;
  878. }
  879. .x6-widget-stencil .unmatched {
  880. opacity: 0.3;
  881. }
  882. .x6-widget-stencil .x6-node.unmatched {
  883. display: none;
  884. }
  885. .x6-widget-stencil-group.unmatched {
  886. display: none;
  887. }
  888. .x6-widget-stencil-search-text {
  889. position: relative;
  890. z-index: 1;
  891. box-sizing: border-box;
  892. width: 100%;
  893. height: 30px;
  894. max-height: 30px;
  895. line-height: 30px;
  896. outline: 0;
  897. }
  898. .x6-widget-stencil.not-found::after {
  899. opacity: 1;
  900. content: attr(data-not-found-text);
  901. }
  902. .x6-widget-stencil.not-found.searchable::after {
  903. top: 30px;
  904. }
  905. .x6-widget-stencil.not-found.searchable.collapsable::after {
  906. top: 50px;
  907. }
  908. .x6-widget-stencil {
  909. color: #333;
  910. background: #f5f5f5;
  911. }
  912. .x6-widget-stencil-content {
  913. position: absolute;
  914. }
  915. .x6-widget-stencil.collapsable > .x6-widget-stencil-content {
  916. top: 32px;
  917. }
  918. .x6-widget-stencil.searchable > .x6-widget-stencil-content {
  919. top: 80px;
  920. }
  921. .x6-widget-stencil.not-found::after {
  922. position: absolute;
  923. }
  924. .x6-widget-stencil.not-found.searchable.collapsable::after {
  925. top: 80px;
  926. }
  927. .x6-widget-stencil.not-found.searchable::after {
  928. top: 60px;
  929. }
  930. .x6-widget-stencil-group {
  931. height: auto;
  932. margin-bottom: 1px;
  933. padding: 0;
  934. transition: none;
  935. }
  936. .x6-widget-stencil-group .x6-graph {
  937. background: transparent;
  938. box-shadow: none;
  939. }
  940. .x6-widget-stencil-group.collapsed {
  941. height: auto;
  942. max-height: 31px;
  943. }
  944. .x6-widget-stencil-title,
  945. .x6-widget-stencil-group > .x6-widget-stencil-group-title {
  946. position: relative;
  947. left: 0;
  948. box-sizing: border-box;
  949. width: 100%;
  950. height: 32px;
  951. padding: 0 5px 0 8px;
  952. color: #666;
  953. font-weight: 700;
  954. font-size: 12px;
  955. line-height: 32px;
  956. cursor: default;
  957. transition: all 0.3;
  958. }
  959. .x6-widget-stencil-title:hover,
  960. .x6-widget-stencil-group > .x6-widget-stencil-group-title:hover {
  961. color: #444;
  962. }
  963. .x6-widget-stencil-title {
  964. background: #e9e9e9;
  965. }
  966. .x6-widget-stencil-group > .x6-widget-stencil-group-title {
  967. background: #ededed;
  968. }
  969. .x6-widget-stencil.collapsable > .x6-widget-stencil-title,
  970. .x6-widget-stencil-group.collapsable > .x6-widget-stencil-group-title {
  971. padding-left: 32px;
  972. cursor: pointer;
  973. }
  974. .x6-widget-stencil.collapsable > .x6-widget-stencil-title::before,
  975. .x6-widget-stencil-group.collapsable > .x6-widget-stencil-group-title::before {
  976. position: absolute;
  977. top: 6px;
  978. left: 8px;
  979. display: block;
  980. width: 18px;
  981. height: 18px;
  982. margin: 0;
  983. padding: 0;
  984. background-color: transparent;
  985. background-repeat: no-repeat;
  986. background-position: 0 0;
  987. border: none;
  988. content: ' ';
  989. }
  990. .x6-widget-stencil.collapsable > .x6-widget-stencil-title::before,
  991. .x6-widget-stencil-group.collapsable > .x6-widget-stencil-group-title::before {
  992. background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iIzAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNOS4zNzUuNUM0LjY4Ny41Ljg3NSA0LjMxMy44NzUgOWMwIDQuNjg4IDMuODEyIDguNSA4LjUgOC41IDQuNjg3IDAgOC41LTMuODEyIDguNS04LjUgMC00LjY4Ny0zLjgxMy04LjUtOC41LTguNXptMCAxNS44ODZDNS4zMDMgMTYuMzg2IDEuOTkgMTMuMDcyIDEuOTkgOXMzLjMxMi03LjM4NSA3LjM4NS03LjM4NVMxNi43NiA0LjkyOCAxNi43NiA5YzAgNC4wNzItMy4zMTMgNy4zODYtNy4zODUgNy4zODZ6Ii8+PHBhdGggZD0iTTEyLjc1MyA4LjQ0M0g1Ljk5N2EuNTU4LjU1OCAwIDAwMCAxLjExNmg2Ljc1NmEuNTU4LjU1OCAwIDAwMC0xLjExNnoiLz48L2c+PC9zdmc+');
  993. opacity: 0.4;
  994. transition: all 0.3s;
  995. }
  996. .x6-widget-stencil.collapsable > .x6-widget-stencil-title:hover::before,
  997. .x6-widget-stencil-group.collapsable > .x6-widget-stencil-group-title:hover::before {
  998. opacity: 0.6;
  999. }
  1000. .x6-widget-stencil.collapsable.collapsed > .x6-widget-stencil-title::before,
  1001. .x6-widget-stencil-group.collapsable.collapsed > .x6-widget-stencil-group-title::before {
  1002. background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iIzAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNOS4zNzUuNUM0LjY4Ny41Ljg3NSA0LjMxMy44NzUgOWMwIDQuNjg4IDMuODEyIDguNSA4LjUgOC41IDQuNjg3IDAgOC41LTMuODEyIDguNS04LjUgMC00LjY4Ny0zLjgxMy04LjUtOC41LTguNXptMCAxNS44ODZDNS4zMDMgMTYuMzg2IDEuOTkgMTMuMDcyIDEuOTkgOXMzLjMxMi03LjM4NSA3LjM4NS03LjM4NVMxNi43NiA0LjkyOCAxNi43NiA5YzAgNC4wNzItMy4zMTMgNy4zODYtNy4zODUgNy4zODZ6Ii8+PHBhdGggZD0iTTEyLjc1MyA4LjQ0M0g1Ljk5N2EuNTU4LjU1OCAwIDAwMCAxLjExNmg2Ljc1NmEuNTU4LjU1OCAwIDAwMC0xLjExNnoiLz48cGF0aCBkPSJNOC44MTcgNS42MjN2Ni43NTZhLjU1OC41NTggMCAwMDEuMTE2IDBWNS42MjNhLjU1OC41NTggMCAxMC0xLjExNiAweiIvPjwvZz48L3N2Zz4=');
  1003. opacity: 0.4;
  1004. }
  1005. .x6-widget-stencil.collapsable.collapsed > .x6-widget-stencil-title:hover::before,
  1006. .x6-widget-stencil-group.collapsable.collapsed > .x6-widget-stencil-group-title:hover::before {
  1007. opacity: 0.6;
  1008. }
  1009. .x6-widget-stencil input[type='search'] {
  1010. -webkit-appearance: textfield;
  1011. }
  1012. .x6-widget-stencil input[type='search']::-webkit-search-cancel-button,
  1013. .x6-widget-stencil input[type='search']::-webkit-search-decoration {
  1014. -webkit-appearance: none;
  1015. }
  1016. .x6-widget-stencil-search-text {
  1017. display: block;
  1018. width: 90%;
  1019. margin: 8px 5%;
  1020. padding-left: 8px;
  1021. color: #333;
  1022. background: #fff;
  1023. border: 1px solid #e9e9e9;
  1024. border-radius: 12px;
  1025. outline: 0;
  1026. }
  1027. .x6-widget-stencil-search-text:focus {
  1028. outline: 0;
  1029. }
  1030. .x6-widget-stencil::after {
  1031. color: #808080;
  1032. font-weight: 600;
  1033. font-size: 12px;
  1034. background: 0 0;
  1035. }
  1036. .x6-widget-transform {
  1037. position: absolute;
  1038. box-sizing: content-box !important;
  1039. margin: -5px 0 0 -5px;
  1040. padding: 4px;
  1041. border: 1px dashed #000;
  1042. border-radius: 5px;
  1043. user-select: none;
  1044. pointer-events: none;
  1045. }
  1046. .x6-widget-transform > div {
  1047. position: absolute;
  1048. box-sizing: border-box;
  1049. background-color: #fff;
  1050. border: 1px solid #000;
  1051. transition: background-color 0.2s;
  1052. pointer-events: auto;
  1053. -webkit-user-drag: none;
  1054. user-drag: none;
  1055. /* stylelint-disable-line */
  1056. }
  1057. .x6-widget-transform > div:hover {
  1058. background-color: #d3d3d3;
  1059. }
  1060. .x6-widget-transform-cursor-n {
  1061. cursor: n-resize;
  1062. }
  1063. .x6-widget-transform-cursor-s {
  1064. cursor: s-resize;
  1065. }
  1066. .x6-widget-transform-cursor-e {
  1067. cursor: e-resize;
  1068. }
  1069. .x6-widget-transform-cursor-w {
  1070. cursor: w-resize;
  1071. }
  1072. .x6-widget-transform-cursor-ne {
  1073. cursor: ne-resize;
  1074. }
  1075. .x6-widget-transform-cursor-nw {
  1076. cursor: nw-resize;
  1077. }
  1078. .x6-widget-transform-cursor-se {
  1079. cursor: se-resize;
  1080. }
  1081. .x6-widget-transform-cursor-sw {
  1082. cursor: sw-resize;
  1083. }
  1084. .x6-widget-transform-resize {
  1085. width: 10px;
  1086. height: 10px;
  1087. border-radius: 6px;
  1088. }
  1089. .x6-widget-transform-resize[data-position='top-left'] {
  1090. top: -5px;
  1091. left: -5px;
  1092. }
  1093. .x6-widget-transform-resize[data-position='top-right'] {
  1094. top: -5px;
  1095. right: -5px;
  1096. }
  1097. .x6-widget-transform-resize[data-position='bottom-left'] {
  1098. bottom: -5px;
  1099. left: -5px;
  1100. }
  1101. .x6-widget-transform-resize[data-position='bottom-right'] {
  1102. right: -5px;
  1103. bottom: -5px;
  1104. }
  1105. .x6-widget-transform-resize[data-position='top'] {
  1106. top: -5px;
  1107. left: 50%;
  1108. margin-left: -5px;
  1109. }
  1110. .x6-widget-transform-resize[data-position='bottom'] {
  1111. bottom: -5px;
  1112. left: 50%;
  1113. margin-left: -5px;
  1114. }
  1115. .x6-widget-transform-resize[data-position='left'] {
  1116. top: 50%;
  1117. left: -5px;
  1118. margin-top: -5px;
  1119. }
  1120. .x6-widget-transform-resize[data-position='right'] {
  1121. top: 50%;
  1122. right: -5px;
  1123. margin-top: -5px;
  1124. }
  1125. .x6-widget-transform.prevent-aspect-ratio .x6-widget-transform-resize[data-position='top'],
  1126. .x6-widget-transform.prevent-aspect-ratio .x6-widget-transform-resize[data-position='bottom'],
  1127. .x6-widget-transform.prevent-aspect-ratio .x6-widget-transform-resize[data-position='left'],
  1128. .x6-widget-transform.prevent-aspect-ratio .x6-widget-transform-resize[data-position='right'] {
  1129. display: none;
  1130. }
  1131. .x6-widget-transform.no-orth-resize .x6-widget-transform-resize[data-position='bottom'],
  1132. .x6-widget-transform.no-orth-resize .x6-widget-transform-resize[data-position='left'],
  1133. .x6-widget-transform.no-orth-resize .x6-widget-transform-resize[data-position='right'],
  1134. .x6-widget-transform.no-orth-resize .x6-widget-transform-resize[data-position='top'] {
  1135. display: none;
  1136. }
  1137. .x6-widget-transform.no-resize .x6-widget-transform-resize {
  1138. display: none;
  1139. }
  1140. .x6-widget-transform-rotate {
  1141. top: -20px;
  1142. left: -20px;
  1143. width: 12px;
  1144. height: 12px;
  1145. border-radius: 6px;
  1146. cursor: crosshair;
  1147. }
  1148. .x6-widget-transform.no-rotate .x6-widget-transform-rotate {
  1149. display: none;
  1150. }
  1151. .x6-widget-transform-active {
  1152. border-color: transparent;
  1153. pointer-events: all;
  1154. }
  1155. .x6-widget-transform-active > div {
  1156. display: none;
  1157. }
  1158. .x6-widget-transform-active > .x6-widget-transform-active-handle {
  1159. display: block;
  1160. background-color: #808080;
  1161. }
  1162. .x6-widget-knob {
  1163. position: absolute;
  1164. box-sizing: border-box;
  1165. width: 16px;
  1166. height: 16px;
  1167. margin-top: -8px;
  1168. margin-left: -8px;
  1169. cursor: pointer;
  1170. user-select: none;
  1171. }
  1172. .x6-widget-knob::before,
  1173. .x6-widget-knob::after {
  1174. position: absolute;
  1175. transform: rotate(45deg);
  1176. content: '';
  1177. }
  1178. .x6-widget-knob::before {
  1179. top: 4px;
  1180. left: 4px;
  1181. box-sizing: border-box;
  1182. width: 8px;
  1183. height: 8px;
  1184. background-color: #fff;
  1185. }
  1186. .x6-widget-knob::after {
  1187. top: 5px;
  1188. left: 5px;
  1189. box-sizing: border-box;
  1190. width: 6px;
  1191. height: 6px;
  1192. background-color: #fca000;
  1193. }
  1194. .x6-graph-print {
  1195. position: relative;
  1196. }
  1197. .x6-graph-print .x6-graph-print-ready {
  1198. display: none;
  1199. }
  1200. .x6-graph-print .x6-graph-print-preview {
  1201. overflow: hidden !important;
  1202. background: #fff !important;
  1203. }
  1204. @media print {
  1205. html,
  1206. html > body.x6-graph-printing {
  1207. position: relative !important;
  1208. width: 100% !important;
  1209. height: 100% !important;
  1210. margin: 0 !important;
  1211. padding: 0 !important;
  1212. }
  1213. html > body.x6-graph-printing > * {
  1214. display: none !important;
  1215. }
  1216. html > body.x6-graph-printing > .x6-graph-print {
  1217. display: block !important;
  1218. }
  1219. .x6-graph-print {
  1220. top: 0 !important;
  1221. left: 0 !important;
  1222. margin: 0 !important;
  1223. padding: 0 !important;
  1224. overflow: hidden !important;
  1225. page-break-after: always;
  1226. background: #fff !important;
  1227. }
  1228. .x6-graph-print .x6-graph-print-ready {
  1229. display: none;
  1230. }
  1231. }
  1232. .x6-cell-tool-editor {
  1233. position: relative;
  1234. display: inline-block;
  1235. min-height: 1em;
  1236. margin: 0;
  1237. padding: 0;
  1238. line-height: 1;
  1239. white-space: normal;
  1240. text-align: center;
  1241. vertical-align: top;
  1242. overflow-wrap: normal;
  1243. outline: none;
  1244. transform-origin: 0 0;
  1245. -webkit-user-drag: none;
  1246. }
  1247. .x6-edge-tool-editor {
  1248. border: 1px solid #275fc5;
  1249. border-radius: 2px;
  1250. }