Files
superset2/superset/assets/visualizations/rose.css
Jeff Niu fdd42ef4b6 [New Viz] Nightingale Rose Chart (#3676)
* Nightingale Rose Chart

* Review comments
2018-02-03 20:18:24 -08:00

25 lines
346 B
CSS

.rose path {
transition: fill-opacity 180ms linear;
stroke: #fff;
stroke-width: 1px;
stroke-opacity: 1;
fill-opacity: 0.75;
}
.rose text {
font: 400 12px Arial, sans-serif;
pointer-events: none;
}
.rose .clickable path {
cursor: pointer;
}
.rose .hover path {
fill-opacity: 1;
}
.nv-legend .nv-series {
cursor: pointer;
}