Files
stackviz/app/styles/directives/_timeline-viewport.scss
Tim Buckley 19c85d503f Add axis to the timeline viewport.
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
2016-01-12 14:27:06 -07:00

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;
}
}