24 lines
362 B
CSS
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;
|
|
}
|