mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-24 01:48:13 +08:00
* toast test * modify webpack build to allow for global CSS; use CSS modules to scope component styling * remove heatmap * add label to index resets * swapping out buttons for blueprint * adding constants to globals * swapping out blueprint buttons * title position, sidebar improvements * sidebar styles * adding toasts for validation errors * zebra section trial * integrating blueprint, switching buttons over, breaking out scatter * clean up console
35 lines
407 B
CSS
35 lines
407 B
CSS
:local(.graphCanvas) path {
|
|
shape-rendering: crispEdges;
|
|
}
|
|
|
|
#graphWrapper {
|
|
position: relative;
|
|
}
|
|
|
|
#graphAttachPoint,
|
|
.graphSVG,
|
|
.graphCanvas {
|
|
position: absolute;
|
|
}
|
|
|
|
#graphSVG {
|
|
pointer-events: none;
|
|
}
|
|
|
|
:local(.axis) path,
|
|
:local(.axis) line {
|
|
fill: none;
|
|
stroke: #000;
|
|
stroke-width: 1px;
|
|
}
|
|
|
|
circle {
|
|
stroke-width: 4px;
|
|
stroke: #000;
|
|
fill: none;
|
|
}
|
|
|
|
:local(.hidden) {
|
|
display: none;
|
|
}
|