Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 1 | @charset "utf-8"; |
2 | @import "../util"; | ||||
3 | |||||
4 | /** | ||||
5 | * SVG tree | ||||
6 | */ | ||||
7 | path.edge { | ||||
8 | stroke: $darker-orange; | ||||
9 | stroke-width: 2px; | ||||
10 | fill: none; | ||||
11 | } | ||||
12 | |||||
13 | marker#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 | |||||
23 | path.anchor { | ||||
24 | stroke: $darkest-orange; | ||||
25 | z-index: 20; | ||||
26 | } | ||||
27 | |||||
28 | g.root rect.empty { | ||||
29 | stroke: $darker-orange; | ||||
30 | fill: $darker-orange; | ||||
31 | stroke-width: 2px; | ||||
32 | } | ||||
33 | |||||
34 | g.middle rect { | ||||
35 | stroke: $darker-orange; | ||||
36 | stroke-width: 2px; | ||||
37 | fill: $middle-orange; | ||||
38 | } | ||||
39 | |||||
40 | g.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 | |||||
53 | g.leaf.mark text > tspan { | ||||
54 | font-weight: bold; | ||||
55 | } | ||||
56 | |||||
57 | g.leaf > rect { | ||||
58 | display: none; | ||||
59 | } | ||||
60 | |||||
61 | g > text > tspan { | ||||
62 | text-anchor: middle; | ||||
63 | font-size: 9pt; | ||||
64 | } | ||||
65 | |||||
Akron | 3d20428 | 2017-09-07 18:24:18 +0200 | [diff] [blame^] | 66 | g.leaf > text, |
67 | text.leaf { | ||||
68 | > tspan { | ||||
69 | font-size: 10pt; | ||||
70 | overflow: visible; | ||||
71 | } | ||||
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 72 | } |