-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviewer.css
92 lines (79 loc) · 1.32 KB
/
viewer.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
html, body {
background-color: #383838;
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
}
#graph {
width: 100%;
height: 100%;
}
/* Graph text */
text, .edgeLabel {
font-weight: 300;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
font-size: 14px;
}
.edgeLabel {
color: white;
fill: white;
}
/* Nodes */
.node.selected > :first-child {
stroke: #008ff7;
stroke-width: 3px;
}
.node > :first-child {
stroke: #333;
fill: #999;
stroke-width: 1.5px;
}
.node .label {
fill: #fffeed;
}
.node.entry > :first-child {
fill: #fff;
}
.node.entry .label {
fill: #303030;
}
.node.action > :first-child {
fill: #555;
}
.node.switch > :first-child {
fill: #0a62d6;
}
.node.fork .label, .node.join .label {
fill: #303030;
}
.node.sub_flow > :first-child {
fill: #c4371f;
}
.edgePath path.path {
stroke: #888;
fill: none;
stroke-width: 1.5px;
}
.edgePath marker {
fill: #cecbcb;
}
.edgePath.selected-in-edge path.path {
stroke: #008ff7;
stroke-width: 2px;
}
.edgePath.selected-in-edge marker {
fill: #008ff7;
}
.edgePath.selected-out-edge path.path {
stroke: #ffffff;
stroke-width: 2px;
}
.edgePath.selected-out-edge marker {
fill: #ffffff;
}
.selected-in-edge-label, .selected-out-edge-label {
font-weight: bold;
font-size: 110%;
text-shadow: 0 0 10px #000;
}