override.css
1.19 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.vue-flow__handle {
width: 16px;
height: 16px;
border-radius: 6px;
background-color: #d1d5db;
border-color: #6b7280;
}
.vue-flow__handle:hover {
background-color: #000;
}
.vue-flow__handle-right {
right: -12px;
}
.vue-flow__handle-left {
left: -12px;
}
.vue-flow__background.vue-flow__container {
@apply dark:bg-dark-500;
background-color: #e9e9e9;
}
.vue-flow__background.vue-flow__container path {
@apply !dark:stroke-gray-600;
}
.vue-flow__edge-path {
stroke-width: 4;
stroke: gray;
transition: stroke-width 0.3s;
}
.connection-focus {
stroke-width: 6;
}
/* 连接线选中时 颜色改变 */
.vue-flow__edge.selected > .vue-flow__edge-path {
stroke: red !important;
}
/* 连接线移入放大效果 */
.vue-flow__edge:hover > .vue-flow__edge-path {
stroke-width: 6 !important;
}
.vue-flow__edge-textbg,
.vue-flow__edge-text {
transition: transform 0.2s;
}
.vue-flow__edge:hover .vue-flow__edge-textbg {
transform: scale(1.1);
}
.vue-flow__edge:hover .vue-flow__edge-text {
transform: scale(1.1);
}
/* selection 选择框 */
.vue-flow__nodesselection-rect,
.vue-flow__selection {
border-width: 3px;
}
.vue-flow__nodesselection-rect {
pointer-events: none;
}