20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
}
div.sideboxDescribed {
display: inline;
font-weight: bold;
}
span.disabled {
color: red;
}
table.timelineTable {
border-spacing: 0px 2px;
}
.timelineDate {
white-space: nowrap;
}
|
>
>
>
>
>
>
>
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
}
div.sideboxDescribed {
display: inline;
font-weight: bold;
}
span.disabled {
color: red;
}
@media only screen and (max-width: 400px) {
// Do not show the timestamps to the left of the
// graph on very narrow timelines, as those HH:MM
// time values take up precious horizontal space
// and add minimal value.
.timelineHistLink { display: none; }
}
table.timelineTable {
border-spacing: 0px 2px;
}
.timelineDate {
white-space: nowrap;
}
|