-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph-core.css
More file actions
66 lines (66 loc) · 1.34 KB
/
graph-core.css
File metadata and controls
66 lines (66 loc) · 1.34 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
.react-flow-container {
position: absolute;
inset: 0;
background: var(--color-bg);
}
.react-flow__node {
font-family: var(--font-sans);
cursor: pointer;
}
.react-flow__background {
background: var(--color-bg) !important;
}
.react-flow__edge-path {
stroke-width: 2;
}
.react-flow__edge-text {
font-size: 11px;
fill: var(--color-text-muted);
}
.react-flow__edge-textbg {
fill: var(--color-bg);
}
/* Selected node highlight */
.react-flow__node.selected {
box-shadow:
0 0 0 3px var(--color-accent),
var(--shadow-lg) !important;
z-index: 1000 !important;
}
.react-flow__node-controllerGroup.selected {
box-shadow:
0 0 0 2px var(--color-accent),
var(--shadow-lg) !important;
}
.react-flow__node-controllerGroup {
cursor: default !important;
}
.controller-group-node {
width: 100%;
height: 100%;
position: relative;
}
.controller-group-label {
position: absolute;
top: 8px;
left: 12px;
font-size: 12px;
font-family: var(--font-mono);
font-weight: 500;
color: var(--color-controller-text);
pointer-events: none;
user-select: none;
white-space: nowrap;
}
.controller-group-type {
position: absolute;
top: 8px;
right: 12px;
font-size: 11px;
font-family: var(--font-mono);
font-weight: 400;
color: var(--color-controller-text);
pointer-events: none;
user-select: none;
white-space: nowrap;
}