UNPKG

876 BCSSView Raw
1.vis-time-axis {
2 position: relative;
3 overflow: hidden;
4}
5
6.vis-time-axis.vis-foreground {
7 top: 0;
8 left: 0;
9 width: 100%;
10}
11
12.vis-time-axis.vis-background {
13 position: absolute;
14 top: 0;
15 left: 0;
16 width: 100%;
17 height: 100%;
18}
19
20.vis-time-axis .vis-text {
21 position: absolute;
22 color: #4d4d4d;
23 padding: 3px;
24 overflow: hidden;
25 box-sizing: border-box;
26
27 white-space: nowrap;
28}
29
30.vis-time-axis .vis-text.vis-measure {
31 position: absolute;
32 padding-left: 0;
33 padding-right: 0;
34 margin-left: 0;
35 margin-right: 0;
36 visibility: hidden;
37}
38
39.vis-time-axis .vis-grid.vis-vertical {
40 position: absolute;
41 border-left: 1px solid;
42}
43
44.vis-time-axis .vis-grid.vis-vertical-rtl {
45 position: absolute;
46 border-right: 1px solid;
47}
48
49.vis-time-axis .vis-grid.vis-minor {
50 border-color: #e5e5e5;
51}
52
53.vis-time-axis .vis-grid.vis-major {
54 border-color: #bfbfbf;
55}