blob: 50331d4a6d54b786d7277d048273635db65c1adc (
plain)
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
|
#Outbound {
fill: lightblue;
}
#Dead {
fill: red;
}
#Inbound {
fill: green;
}
.hypertree {
border: solid;
}
.hypertree-link {
fill: none;
stroke-width: 1.2px;
}
.hypertree-link.Outbound {
stroke: lightblue;
}
.hypertree-link.Dead {
stroke: red;
stroke-dasharray: 0,2 1;
}
.hypertree-link.Inbound {
stroke: green;
}
circle {
fill: lightgreen;
stroke: darkgreen;
stroke-width: 1.5px;
}
text {
font: 9px sans-serif;
cursor: default;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
}
text tspan.truncated {
display: none;
}
text:hover tspan.truncated {
display: inherit;
}
text tspan.ellipsis {
display: inherit;
}
text:hover tspan.ellipsis {
display: none;
}
|