-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtimeline.css
112 lines (93 loc) · 1.65 KB
/
timeline.css
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* axis */
.axis { /* axis labels */
fill: #808080;
font-family: sans-serif;
font-size: 10px;
}
.axis line{ /* axis tick marks */
stroke-width : 1;
stroke: grey;
shape-rendering: crispEdges;
}
.axis path { /* axis line */
stroke-width : 1;
stroke: grey;
shape-rendering: crispEdges;
}
/* timeline band */
.band { /* band background */
fill: #FAFAFA;
}
/* labels */
.bandLabel {
fill: #F0F0F0;
font: 10px sans-serif;
font-weight: bold;
}
.bandMinMaxLabel {
fill: blue;
font: 10px sans-serif;
font-weight: bold;
}
.bandMidLabel {
fill: red;
font: 10px sans-serif;
font-style: italic;
font-weight: bold;
}
/* brush */
.brush .extent {
stroke: gray;
fill: blue;
fill-opacity: .1;
}
.chart {
fill: #EEEEEE;
}
.interval {
/*fill: #AAFFFF;*/
/*fill:steelblue;*/
stroke-width: 6;
cursor : default;
pointer-events: true;
}
.instant {
fill: #FFAAFF;
stroke-width: 6;
cursor : default;
/*pointer-events: true;*/
}
.instantLabel {
fill : blue;
font: 10px sans-serif;
shape-rendering: crispEdges;
}
.intervalLabel {
fill : black;
font: 10px sans-serif;
shape-rendering: crispEdges;
}
.item {
cursor : default;
pointer-events: auto;
}
.svg {
border-style: solid;
border-width: 0px;
border-color: black;
background-color: #FFFFFF;
}
.tooltip {
width: auto;
position: absolute;
visibility: hidden;
color : black;
cursor:default;
background-color: #FFFFEE;
border: 0px;
border-radius: 8px;
padding: 4px;
shape-rendering: crispEdges;
pointer-events: none;
font-size: 12px;
}