-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclusterview.css
More file actions
82 lines (66 loc) · 1.04 KB
/
clusterview.css
File metadata and controls
82 lines (66 loc) · 1.04 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
73
74
75
76
77
78
79
80
81
.node {
font: 300 11px "Helvetica Neue", Helvetica, Arial, sans-serif;
fill: #999999;
stroke: white;
}
.node--leaf {
fill: #6666af;
}
.node--descendant {
fill: #dfd89d;
}
.node--ancestor {
fill: #efe8ad;
}
.node:hover {
fill: steelblue;
}
.node:hover,
.node--source,
.node--target {
font-weight: 700;
}
.node--hovered {
fill: steelblue;
border: steelblue;
}
.node--source {
fill: #2ca02c;
}
.node--target {
fill: #d62728;
}
.node--none {
fill-opacity: 0.4;
}
.link {
fill: none;
stroke:url(#bundleview-gradient);
stroke-opacity: .4;
pointer-events: none;
}
.link--source,
.link--target {
stroke-opacity: .7;
stroke-width: 2px;
}
.link--none {
stroke: #d4d4d4;
stroke-opacity: .3;
}
.colors {
related-nodes: #66eaea;
related-nodes2: #46caca;
basic: #999999;
leaf: #6666af;
small: #ca4444;
}
.bundle--text {
width: 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.bundle--text--none {
fill-opacity: 0.4;
}