2018-03-11 18:24:58 +08:00
|
|
|
.label {
|
2015-05-26 20:41:53 +02:00
|
|
|
font-family: 'trebuchet ms', verdana, arial;
|
2018-03-11 20:14:22 +08:00
|
|
|
color: #333;
|
2015-05-26 20:41:53 +02:00
|
|
|
}
|
2015-03-01 16:29:41 +01:00
|
|
|
|
2015-10-24 23:34:21 +01:00
|
|
|
.node rect,
|
|
|
|
.node circle,
|
|
|
|
.node ellipse,
|
|
|
|
.node polygon {
|
2018-03-09 16:23:35 +08:00
|
|
|
fill: $mainBkg;
|
|
|
|
stroke: $nodeBorder;
|
2015-03-01 16:29:41 +01:00
|
|
|
stroke-width: 1px;
|
|
|
|
}
|
|
|
|
|
2017-12-03 04:29:28 +01:00
|
|
|
.node.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2016-07-20 13:19:27 +08:00
|
|
|
.arrowheadPath {
|
2018-03-09 16:23:35 +08:00
|
|
|
fill: $arrowheadColor;
|
2016-07-20 13:19:27 +08:00
|
|
|
}
|
|
|
|
|
2015-03-01 16:29:41 +01:00
|
|
|
.edgePath .path {
|
2018-03-09 16:23:35 +08:00
|
|
|
stroke: $lineColor;
|
2015-03-07 13:51:47 +01:00
|
|
|
stroke-width: 1.5px;
|
2015-03-01 16:29:41 +01:00
|
|
|
}
|
2015-12-08 17:26:17 +01:00
|
|
|
|
|
|
|
.edgeLabel {
|
2018-03-09 16:23:35 +08:00
|
|
|
background-color: $edgeLabelBackground;
|
2015-12-08 17:26:17 +01:00
|
|
|
}
|
|
|
|
|
2017-04-22 20:37:43 +08:00
|
|
|
.cluster rect {
|
2019-05-24 17:08:45 +02:00
|
|
|
fill: $secondBkg;
|
|
|
|
stroke: $clusterBorder;
|
|
|
|
stroke-width: 1px;
|
2015-03-01 16:29:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.cluster text {
|
2018-03-09 16:23:35 +08:00
|
|
|
fill: $titleColor;
|
2015-10-24 23:34:21 +01:00
|
|
|
}
|
2018-03-12 20:21:19 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|