
This adds a labeled time axis to the main viewport chart. Previously time was only displayed as part of the cursor, but now it is also visible at all times on the chart itself. Change-Id: I8f2379ef50a1d4f4ea2869aa26f1a7e5744bdb8a
29 lines
402 B
SCSS
29 lines
402 B
SCSS
timeline-viewport svg {
|
|
.axis {
|
|
shape-rendering: crispEdges;
|
|
|
|
path {
|
|
fill: none;
|
|
stroke: lightgray;
|
|
}
|
|
|
|
line {
|
|
fill: none;
|
|
stroke: lightgray;
|
|
}
|
|
|
|
text {
|
|
font: 9px sans-serif;
|
|
fill: #888;
|
|
}
|
|
}
|
|
|
|
.filter-hit {
|
|
|
|
}
|
|
|
|
.filter-miss {
|
|
opacity: 0.15;
|
|
}
|
|
}
|