blob: 25ba8fae6edb52afc1ff2e699b50f69bfb68da15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
.chart {
font-family: Arial, sans-serif;
font-size: 12px;
}
rect.zoom-panel {
/*cursor: ew-resize;*/
fill: none;
pointer-events: all;
}
.axis path,.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.axis.y {
font-size: 16px;
cursor: ns-resize;
}
.axis.x {
font-size: 16px;
}
#ruler {
text-anchor: middle;
alignment-baseline: before-edge;
font-size: 16px;
font-family: sans-serif;
pointer-events: none;
}
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
}
.d3-tip pre {
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0);
color: #fff;
border: 0px;
}
/* Style northward tooltips differently */
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
/* for arrowhead marker */
#arrow {
stroke-width:1;
stroke-dasharray:0;
}
.bar:hover {
stroke-width: 1px;
stroke: black;
}
|