chore(handles): cleanup

This commit is contained in:
moklick
2024-02-29 12:53:04 +01:00
parent 417a3f528d
commit 68ce560cf1
8 changed files with 41 additions and 28 deletions
@@ -42,6 +42,7 @@ const TouchDeviceFlow = () => {
onConnectEnd={onConnectEnd}
onClickConnectStart={onClickConnectStart}
onClickConnectEnd={onClickConnectEnd}
className="touch-flow"
/>
);
};
@@ -1,15 +1,15 @@
.react-flow .react-flow__handle {
.react-flow.touch-flow .react-flow__handle {
width: 20px;
height: 20px;
border-radius: 3px;
background-color: #9f7aea;
}
.react-flow__handle-right {
.touch-flow .react-flow__handle-right {
--translate: translate(50%, -50%);
}
.react-flow__handle-left {
.touch-flow .react-flow__handle-left {
--translate: translate(-50%, -50%);
}
@@ -22,6 +22,6 @@
}
}
.react-flow .react-flow__handle.clickconnecting {
.react-flow.touch-flow .react-flow__handle.clickconnecting {
animation: bounce 1600ms infinite ease-in;
}
@@ -24,10 +24,14 @@
background: #fff;
}
.validationflow :global .connecting {
.validationflow :global .connectingto {
background: #ff6060;
}
.validationflow :global .react-flow__node-custominput .connectingfrom {
background: #55dd99;
}
.validationflow :global .valid {
background: #55dd99;
}