blob: 088690f3369f555210a58c4747d6952f3585b97c [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
Akron430332b2017-11-20 15:36:51 +010013g.arc.infocus > path.edge {
14 stroke: $dark-green;
15}
16
Akron15175132017-09-07 18:12:55 +020017marker#arr {
18 overflow: visible;
19 path {
Akron15175132017-09-07 18:12:55 +020020 stroke: $darkest-orange;
21 fill: $darkest-orange;
Akron430332b2017-11-20 15:36:51 +010022 fill-opacity:1;
23 stroke-width: 2;
Akron15175132017-09-07 18:12:55 +020024 }
25}
26
27path.anchor {
28 stroke: $darkest-orange;
Akron65d31082017-09-08 16:23:40 +020029 stroke-width: 3;
30 stroke-linecap: round;
Akron15175132017-09-07 18:12:55 +020031 z-index: 20;
32}
33
34g.root rect.empty {
35 stroke: $darker-orange;
36 fill: $darker-orange;
37 stroke-width: 2px;
38}
39
Akronc9f23022017-09-13 15:43:52 +020040g.middle, g.label {
Akron65d31082017-09-08 16:23:40 +020041 rect {
42 stroke: $darker-orange;
43 stroke-width: 2px;
44 fill: $middle-orange;
45 }
Akron15175132017-09-07 18:12:55 +020046}
47
Akron430332b2017-11-20 15:36:51 +010048g.label.infocus rect {
49 stroke: $dark-green;
50 fill: $lightest-green;
51}
52
Akron15175132017-09-07 18:12:55 +020053g.middle.mark {
54 rect {
55 fill: $darker-orange;
56 }
57 > text {
58 fill: $light-orange;
59 > tspan {
60 stroke: $light-orange;
61 }
62 }
63}
64
Akron15175132017-09-07 18:12:55 +020065g.leaf.mark text > tspan {
66 font-weight: bold;
67}
68
69g.leaf > rect {
70 display: none;
71}
72
73g > text > tspan {
74 text-anchor: middle;
75 font-size: 9pt;
76}
77
Akron3d204282017-09-07 18:24:18 +020078g.leaf > text,
79text.leaf {
80 > tspan {
81 font-size: 10pt;
82 overflow: visible;
83 }
Akron15175132017-09-07 18:12:55 +020084}