Welcome to mirror list, hosted at ThFree Co, Russian Federation.

flowchart.scss « themes « mermaid « lib « assets - github.com/dillonzq/LoveIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9bd8d9664fd8766d8228f7f610e18846b4656dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.label {
  font-family: 'trebuchet ms', verdana, arial;
  font-family: var(--mermaid-font-family);
  color: #333;
}

.label text {
  fill: #333;
}

.node rect,
.node circle,
.node ellipse,
.node polygon,
.node path {
  fill: $mainBkg;
  stroke: $nodeBorder;
  stroke-width: 1px;
}

.node .label {
  text-align: center;
}
.node.clickable {
  cursor: pointer;
}

.arrowheadPath {
  fill: $arrowheadColor;
}

.edgePath .path {
  stroke: $lineColor;
  stroke-width: 1.5px;
}

.edgeLabel {
  background-color: $edgeLabelBackground;
  text-align: center;
}

.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;
  font-family: var(--mermaid-font-family);
  font-size: 12px;
  background: $secondBkg;
  border: 1px solid $border2;
  border-radius: 2px;
  pointer-events: none;
  z-index: 100;
}