-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflowviewer.css
108 lines (92 loc) · 1.86 KB
/
flowviewer.css
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
color: #040506;
background-color: #fefcfc
}
.node {
fill-opacity: 1;
stroke-width: 1px;
}
.link {
stroke: #999;
stroke-width: 3;
fill: none;
}
.link-dashed {
stroke: rgb(170,170,170);
stroke-width: 2;
}
.group-text-label {
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
font-size: 14px;
}
.node-text-label {
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
font-size: 14px;
dominant-baseline: middle;
}
.subflow-node-text-label {
color: rgb(85, 85, 85);
dominant-baseline: middle;
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
font-size: 10px;
line-height: 20px;
pointer-events: none;
text-anchor: middle;
user-select: none
}
.subflow-node-text-label-number {
color: rgb(85, 85, 85);
dominant-baseline: middle;
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 20px;
pointer-events: none;
text-anchor: middle;
user-select: none
}
.flow-download-link {
font-size: 70%;
}
.flow-copy-to-clipboard-link {
font-size: 70%;
}
.link-highlight, .node-highlight {
stroke: rgb(247, 103, 30);
}
.node-highlight {
stroke-width: 8px;
}
.node-disabled {
stroke-dasharray: 8,3;
fill-opacity: 0.5;
}
.group-highlight {
stroke: rgb(255, 127, 14);
stroke-width: 4px;
fill: rgb(255, 127, 14);
fill-opacity: 0.2;
}
.link-disabled {
stroke-dasharray: 10,8 !important;
stroke-width: 2 !important;
stroke: rgb(204, 204, 204);
}
.grid-line {
shape-rendering: crispedges;
stroke: rgb(238, 238, 238);
stroke-width: 1px;
fill: none;
}
.output-deco {
stroke-width: 2px;
stroke-miterlimit: 4;
}
.input-deco {
stroke-width: 2px;
stroke-miterlimit: 4;
}
.flow-render-error {
background-color: rgb(54, 52, 52);
color: rgb(196, 59, 59);
width: 100%;
}