blob: 362959076aa5db988d40b6fa2d70e0158db1e102 [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
Akronc9f23022017-09-13 15:43:52 +020036g.middle, g.label {
Akron65d31082017-09-08 16:23:40 +020037 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
Akron15175132017-09-07 18:12:55 +020056g.leaf.mark text > tspan {
57 font-weight: bold;
58}
59
60g.leaf > rect {
61 display: none;
62}
63
64g > text > tspan {
65 text-anchor: middle;
66 font-size: 9pt;
67}
68
Akron3d204282017-09-07 18:24:18 +020069g.leaf > text,
70text.leaf {
71 > tspan {
72 font-size: 10pt;
73 overflow: visible;
74 }
Akron15175132017-09-07 18:12:55 +020075}