This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
SXS20240115/SRC/iMES_PAD/JSplugins/d3-MindMap/d3-MindMap.css
2024-01-24 16:47:50 +08:00

24 lines
362 B
CSS

#mind-map{
overflow:auto;
}
#mind-map .node text {
font-size: 11px;
}
#mind-map path.link {
fill: none;
stroke: #9c9c9c;
stroke-width: 1.5px;
}
#mind-map .node rect {
cursor: pointer;
stroke:#9c9c9c;
stroke-width:1;
fill:#FFFFFF
}
#mind-map .node.selected rect {
fill: #1ab7cd;
}
#mind-map .node.selected text {
fill: white;
}