File size: 654 Bytes
1e92f2d |
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 35 |
@import "uplot/dist/uPlot.min.css";
.uplot {
.u-legend {
color: var(--studio-gray-100);
// Disable rendering first u-marker, which is for "Date" and is empty.
> .u-series:first-child > th > .u-marker {
display: none;
}
// Use increased specificity to override original uPlot styles.
> tr.u-series > th {
cursor: initial;
&::after {
vertical-align: baseline;
}
> .u-marker {
// Nudge marker down to align with text.
margin-top: -2px;
// Make the marker round.
border-radius: 100%;
}
> .u-label {
vertical-align: baseline;
}
}
}
}
.calypso-uplot-chart-container {
position: relative;
}
|