blob: 04eefda0eb7e6e03d5b1e8f067f1d6e97f4690d1 (
plain)
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
|
.history-timeline {
pointer-events: none;
z-index: -1;
position: absolute;
width: 100%;
justify-content: center;
bottom: 100px;
}
#gantbox{
position:absolute;
background-color: rgba(200,200,200,0.1);
height:100%;
width: 100%;
overflow: auto;
z-index:0;
}
.missingdates{
position:fixed;
bottom:60px;
left:160px;
}
.axis{
stroke: #ccc;
fill: #ccc;
}
.axis path,.axis line {
fill: none;
stroke: #ccc;
shape-rendering: crispEdges;
}
|