Skip to content
Snippets Groups Projects
_flowchart.scss 851 B
.label {
  font-family: 'trebuchet ms', verdana, arial;
  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;
}

.cluster rect {
  fill: $secondBkg !important;
  stroke: $clusterBorder !important;
  stroke-width: 1px !important;
}

.cluster text {
  fill: $titleColor;
}

div.mermaidTooltip {
  position: absolute;
  text-align: center;
  max-width: 200px;
  padding: 2px;
  font-family: 'trebuchet ms', verdana, arial;
  font-size: 12px;
  background: $secondBkg;
  border: 1px solid $border2;
  border-radius: 2px;
  pointer-events: none;
  z-index: 100;
}