-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtimeline.css
More file actions
94 lines (79 loc) · 1.4 KB
/
timeline.css
File metadata and controls
94 lines (79 loc) · 1.4 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.axis {
fill: #808080;
font-family: sans-serif;
font-size: 10px;
}
.axis line, .axis path {
stroke-width : 1;
stroke: black;
shape-rendering: crispEdges;
}
.band {
/*fill: #F4FFFF;*/
fill: #FAFAFA;
}
.bandLabel {
fill: blue;
background-color: #FF0000;
pointer-events: none;
}
.brush .extent {
stroke: gray;
fill: blue;
fill-opacity: .1;
}
.chart {
fill: #EEEEEE;
}
.durationLabel {
fill: blue;
font-style: italic;
background-color: #FF0000;
pointer-events: none;
}
.interval {
fill: #AAFFFF;
stroke-width: 6;
pointer-events: true;
cursor : default;
}
.instant {
fill: #FFAAFF;
stroke-width: 6;
cursor : default;
}
.instantLabel {
fill : blue;
font: 10px sans-serif;
background-color: #FF0000;
shape-rendering: crispEdges;
/*pointer-events: none;*/
}
.intervalLabel {
fill : black;
font: 10px sans-serif;
shape-rendering: crispEdges;
/*pointer-events: none;*/
}
.item {
cursor : default;
pointer-events: auto;
}
.svg {
border-style: solid;
border-width: 1px;
border-color: black;
background-color: #FFFFFF;
}
.tooltip {
width: auto;
position: absolute;
visibility: hidden;
color : black;
cursor:default;
background-color: #FFFFEE;
border: 1px solid;
padding: 8px;
shape-rendering: crispEdges;
pointer-events: none;
}