mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
* [big number] various improvements * dynamic number of X axis ticks based on width to prevent label overlap * corrected overflow on the x axis * improved tooltips (precise arrow and visible data point circle on hover) * Fixing tooltips in heatmap viz
31 lines
829 B
CSS
31 lines
829 B
CSS
.heatmap .slice_container {
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.heatmap .axis text {
|
|
font: 10px sans-serif;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
.heatmap .axis path,
|
|
.heatmap .axis line {
|
|
fill: none;
|
|
stroke: #000;
|
|
shape-rendering: crispEdges;
|
|
}
|
|
|
|
.heatmap svg {
|
|
}
|
|
|
|
.heatmap canvas, .heatmap img {
|
|
image-rendering: optimizeSpeed; /* Older versions of FF */
|
|
image-rendering: -moz-crisp-edges; /* FF 6.0+ */
|
|
image-rendering: -webkit-optimize-contrast; /* Safari */
|
|
image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
|
|
image-rendering: pixelated; /* Awesome future-browsers */
|
|
-ms-interpolation-mode: nearest-neighbor; /* IE */
|
|
}
|