mermaid/src/themes/flow.scss

42 lines
591 B
SCSS
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 {
2018-03-09 16:23:35 +08:00
fill: $mainBkg;
stroke: $nodeBorder;
stroke-width: 1px;
}
.node.clickable {
cursor: pointer;
}
.arrowheadPath {
2018-03-09 16:23:35 +08:00
fill: $arrowheadColor;
}
.edgePath .path {
2018-03-09 16:23:35 +08:00
stroke: $lineColor;
stroke-width: 1.5px;
}
.edgeLabel {
2018-03-09 16:23:35 +08:00
background-color: $edgeLabelBackground;
}
2017-04-22 20:37:43 +08:00
.cluster rect {
2018-03-09 16:23:35 +08:00
fill: $secondBkg !important;
2017-04-22 20:37:43 +08:00
rx: 4 !important;
2018-03-09 16:23:35 +08:00
stroke: $clusterBorder !important;
stroke-width: 1px !important;
}
.cluster text {
2018-03-09 16:23:35 +08:00
fill: $titleColor;
}