blob: c7e064b72c898568ee85684aabc2700860929dcd [file] [log] [blame]
Akron15175132017-09-07 18:12:55 +02001@charset "utf-8";
Akron7e5afce2020-08-25 15:50:19 +02002@import "../../util";
Akron15175132017-09-07 18:12:55 +02003
4/**
5 * SVG tree
6 */
7path.edge {
Akron7e5afce2020-08-25 15:50:19 +02008 stroke: $darker-orange;
Akron15175132017-09-07 18:12:55 +02009 stroke-width: 2px;
Akron7e5afce2020-08-25 15:50:19 +020010 fill: none;
Akron15175132017-09-07 18:12:55 +020011}
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 {
Akron7e5afce2020-08-25 15:50:19 +020020 stroke: $darkest-orange;
21 fill: $darkest-orange;
22 fill-opacity: 1;
Akron430332b2017-11-20 15:36:51 +010023 stroke-width: 2;
Akron15175132017-09-07 18:12:55 +020024 }
25}
26
27path.anchor {
Akron7e5afce2020-08-25 15:50:19 +020028 stroke: $darkest-orange;
29 stroke-width: 3;
Akron65d31082017-09-08 16:23:40 +020030 stroke-linecap: round;
Akron7e5afce2020-08-25 15:50:19 +020031 z-index: 20;
Akron15175132017-09-07 18:12:55 +020032}
33
34g.root rect.empty {
Akron7e5afce2020-08-25 15:50:19 +020035 stroke: $darker-orange;
36 fill: $darker-orange;
Akron15175132017-09-07 18:12:55 +020037 stroke-width: 2px;
38}
39
Akron7e5afce2020-08-25 15:50:19 +020040g.middle,
41g.label {
Akron65d31082017-09-08 16:23:40 +020042 rect {
Akron7e5afce2020-08-25 15:50:19 +020043 stroke: $darker-orange;
Akron65d31082017-09-08 16:23:40 +020044 stroke-width: 2px;
Akron7e5afce2020-08-25 15:50:19 +020045 fill: $middle-orange;
Akron65d31082017-09-08 16:23:40 +020046 }
Akron15175132017-09-07 18:12:55 +020047}
48
Akron430332b2017-11-20 15:36:51 +010049g.label.infocus rect {
50 stroke: $dark-green;
Akron7e5afce2020-08-25 15:50:19 +020051 fill: $lightest-green;
Akron430332b2017-11-20 15:36:51 +010052}
53
Akron15175132017-09-07 18:12:55 +020054g.middle.mark {
55 rect {
56 fill: $darker-orange;
57 }
58 > text {
59 fill: $light-orange;
Akron7e5afce2020-08-25 15:50:19 +020060
Akron15175132017-09-07 18:12:55 +020061 > tspan {
62 stroke: $light-orange;
63 }
64 }
65}
66
Akron15175132017-09-07 18:12:55 +020067g.leaf.mark text > tspan {
68 font-weight: bold;
69}
70
71g.leaf > rect {
72 display: none;
73}
74
75g > text > tspan {
76 text-anchor: middle;
Akron7e5afce2020-08-25 15:50:19 +020077 font-size: 9pt;
Akron15175132017-09-07 18:12:55 +020078}
79
Akron3d204282017-09-07 18:24:18 +020080g.leaf > text,
81text.leaf {
82 > tspan {
83 font-size: 10pt;
Akron7e5afce2020-08-25 15:50:19 +020084 overflow: visible;
Akron3d204282017-09-07 18:24:18 +020085 }
Akron15175132017-09-07 18:12:55 +020086}