-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.less
56 lines (49 loc) · 1.09 KB
/
style.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.react-flow__edge {
.react-flow__edge-path {
stroke-width: 2.5;
&:hover {
stroke: #595959;
marker-end: url('#react-flow__arrowend-hovered');
marker-start: url('#react-flow__circle-hovered');
cursor: pointer;
}
}
&.selected {
.react-flow__edge-path {
stroke: #1890ff !important;
marker-end: url('#react-flow__arrowend-selected');
marker-start: url('#react-flow__circle-selected');
}
}
}
//Style for vector created when is connecting
.react-flow__connection {
.react-flow__connection-path {
stroke: #1890ff;
stroke-width: 2.5;
}
}
.react-flow__handle-connecting {
border-color: #ff6060 !important;
background-color: #ff6060 !important;
}
.react-flow__handle-valid {
border-color: #1890ff !important;
background-color: #1890ff !important;
}
.experiment-flow {
height: 100%;
position: relative;
.experiment-flow-logs-button {
position: absolute;
bottom: 16px;
right: 16px;
z-index: 10;
}
.experiment-flow-empty-operators {
position: absolute;
top: 25%;
left: 25%;
z-index: 10;
}
}