mermaid/src/less/forest/flow.less

42 lines
591 B
Plaintext
Raw Normal View History

2017-04-22 20:26:53 +08:00
.mermaid .label {
font-family: 'trebuchet ms', verdana, arial;
2017-04-22 20:37:43 +08:00
color: #333
}
.node rect,
.node circle,
.node ellipse,
.node polygon {
fill: @mainBkg;
stroke: @nodeBorder;
stroke-width: 1px;
}
.node.clickable {
cursor: pointer;
}
.arrowheadPath {
fill: @arrowheadColor;
}
.edgePath .path {
stroke: @lineColor;
stroke-width: 1.5px;
}
.edgeLabel {
background-color: @edgeLabelBackground;
}
2017-04-22 20:37:43 +08:00
.cluster rect {
fill: @secondBkg !important;
2017-04-22 20:37:43 +08:00
rx: 4 !important;
stroke: @clusterBorder !important;
stroke-width: 1px !important;
}
.cluster text {
2017-04-22 20:37:43 +08:00
fill: @titleColor;
}