blob: 8ecaf20d1f0cae7fc642afbadc95df0038c37e45 [file] [log] [blame]
Akron15175132017-09-07 18:12:55 +02001@charset "utf-8";
2@import "../util";
3
4/**
5 * SVG tree
6 */
7path.edge {
8 stroke: $darker-orange;
9 stroke-width: 2px;
10 fill: none;
11}
12
13marker#arr {
14 overflow: visible;
15 path {
16 fill-opacity:1;
17 stroke-width: 2;
18 stroke: $darkest-orange;
19 fill: $darkest-orange;
20 }
21}
22
23path.anchor {
24 stroke: $darkest-orange;
Akron65d31082017-09-08 16:23:40 +020025 stroke-width: 3;
26 stroke-linecap: round;
Akron15175132017-09-07 18:12:55 +020027 z-index: 20;
28}
29
30g.root rect.empty {
31 stroke: $darker-orange;
32 fill: $darker-orange;
33 stroke-width: 2px;
34}
35
Akron65d31082017-09-08 16:23:40 +020036g.middle, g.arc {
37 rect {
38 stroke: $darker-orange;
39 stroke-width: 2px;
40 fill: $middle-orange;
41 }
Akron15175132017-09-07 18:12:55 +020042}
43
44g.middle.mark {
45 rect {
46 fill: $darker-orange;
47 }
48 > text {
49 fill: $light-orange;
50 > tspan {
51 stroke: $light-orange;
52 }
53 }
54}
55
56
57g.leaf.mark text > tspan {
58 font-weight: bold;
59}
60
61g.leaf > rect {
62 display: none;
63}
64
65g > text > tspan {
66 text-anchor: middle;
67 font-size: 9pt;
68}
69
Akron3d204282017-09-07 18:24:18 +020070g.leaf > text,
71text.leaf {
72 > tspan {
73 font-size: 10pt;
74 overflow: visible;
Akron65d31082017-09-08 16:23:40 +020075 z-index: 30;
Akron3d204282017-09-07 18:24:18 +020076 }
Akron15175132017-09-07 18:12:55 +020077}