blob: eb58b3a23ec1568a902ab8378c4f2df05565719e [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;
25 z-index: 20;
26}
27
28g.root rect.empty {
29 stroke: $darker-orange;
30 fill: $darker-orange;
31 stroke-width: 2px;
32}
33
34g.middle rect {
35 stroke: $darker-orange;
36 stroke-width: 2px;
37 fill: $middle-orange;
38}
39
40g.middle.mark {
41 rect {
42 fill: $darker-orange;
43 }
44 > text {
45 fill: $light-orange;
46 > tspan {
47 stroke: $light-orange;
48 }
49 }
50}
51
52
53g.leaf.mark text > tspan {
54 font-weight: bold;
55}
56
57g.leaf > rect {
58 display: none;
59}
60
61g > text > tspan {
62 text-anchor: middle;
63 font-size: 9pt;
64}
65
66g.leaf > text > tspan {
67 font-size: 10pt;
68 overflow: visible;
69}