Files
superset2/superset/assets/visualizations/partition.css
Jeff Niu bad6938d1a [New Viz] Partition Diagram (#3642)
* Added Partition Visualization

* added unit tests
2017-10-12 21:54:59 -07:00

28 lines
403 B
CSS

.partition .chart {
display: block;
margin: auto;
font-size: 11px;
}
.partition rect {
stroke: #eee;
fill: #aaa;
fill-opacity: .8;
transition: fill-opacity 180ms linear;
cursor: pointer;
}
.partition rect:hover {
fill-opacity: 1;
}
.partition g text {
font-weight: bold;
pointer-events: none;
fill: rgba(0, 0, 0, 0.8);
}
.partition g:hover text {
fill: rgba(0, 0, 0, 1);
}