2019-08-17 17:16:09 +02:00
|
|
|
.label {
|
|
|
|
font-family: 'trebuchet ms', verdana, arial;
|
2019-11-23 08:26:15 +01:00
|
|
|
font-family: var(--mermaid-font-family);
|
2019-08-17 17:16:09 +02:00
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label text {
|
|
|
|
fill: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.node rect,
|
|
|
|
.node circle,
|
|
|
|
.node ellipse,
|
|
|
|
.node polygon {
|
|
|
|
fill: $mainBkg;
|
|
|
|
stroke: $nodeBorder;
|
|
|
|
stroke-width: 1px;
|
|
|
|
}
|
|
|
|
|
2019-11-23 08:26:15 +01:00
|
|
|
.node .label {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2019-08-17 17:16:09 +02:00
|
|
|
.node.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrowheadPath {
|
|
|
|
fill: $arrowheadColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edgePath .path {
|
|
|
|
stroke: $lineColor;
|
|
|
|
stroke-width: 1.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edgeLabel {
|
|
|
|
background-color: $edgeLabelBackground;
|
2019-11-23 08:26:15 +01:00
|
|
|
text-align: center;
|
2019-08-17 17:16:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.cluster rect {
|
|
|
|
fill: $secondBkg;
|
|
|
|
stroke: $clusterBorder;
|
|
|
|
stroke-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluster text {
|
|
|
|
fill: $titleColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mermaidTooltip {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 200px;
|
|
|
|
padding: 2px;
|
|
|
|
font-family: 'trebuchet ms', verdana, arial;
|
2019-11-23 08:26:15 +01:00
|
|
|
font-family: var(--mermaid-font-family);
|
2019-08-17 17:16:09 +02:00
|
|
|
font-size: 12px;
|
|
|
|
background: $secondBkg;
|
|
|
|
border: 1px solid $border2;
|
|
|
|
border-radius: 2px;
|
|
|
|
pointer-events: none;
|
|
|
|
z-index: 100;
|
|
|
|
}
|