-
Notifications
You must be signed in to change notification settings - Fork 78
/
phylotree.css
92 lines (74 loc) · 1.26 KB
/
phylotree.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
.tree-selection-brush .extent {
fill-opacity: .05;
stroke: #fff;
shape-rendering: crispEdges;
}
.tree-scale-bar text {
font: sans-serif;
}
.tree-scale-bar line,
.tree-scale-bar path {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.node circle, .node ellipse, .node rect {
fill: steelblue;
stroke: black;
stroke-width: 0.5px;
}
.internal-node circle, .internal-node ellipse, .internal-node rect{
fill: #CCC;
stroke: black;
stroke-width: 0.5px;
}
.node {
font: 10px sans-serif;
}
.node-selected {
fill: #f00 !important;
}
.node-collapsed circle, .node-collapsed ellipse, .node-collapsed rect{
fill: black !important;
}
.node-tagged {
fill: #00f;
}
.branch {
fill: none;
stroke: #999;
stroke-width: 2px;
}
.clade {
fill: lightgrey;
stroke: #222;
stroke-width: 2px;
opacity: 0.5;
}
.branch-selected {
stroke: #f00 !important;
stroke-width: 3px;
}
.branch-tagged {
stroke: #00f;
stroke-dasharray: 10,5;
stroke-width: 2px;
}
.branch-tracer {
stroke: #bbb;
stroke-dasharray: 3,4;
stroke-width: 1px;
}
.branch-multiple {
stroke-dasharray: 5, 5, 1, 5;
stroke-width: 3px;
}
.branch:hover {
stroke-width: 10px;
}
.internal-node circle:hover, .internal-node ellipse:hover, .internal-node rect:hover {
fill: black;
stroke: #CCC;
}
.tree-widget {
}