mermaid/src/less/forest/sequenceDiagram.less

76 lines
1.0 KiB
Plaintext
Raw Normal View History

.actor {
stroke: @actorBorder;
fill: @actorBkg;
}
2017-04-22 20:37:43 +08:00
text.actor {
2017-04-22 20:37:43 +08:00
fill: @actorTextColor;
stroke: none;
}
.actor-line {
2017-04-22 20:37:43 +08:00
stroke: @actorLineColor;
}
.messageLine0 {
2017-04-22 20:37:43 +08:00
stroke-width: 1.5;
stroke-dasharray: "2 2";
2017-04-22 20:37:43 +08:00
marker-end: "url(#arrowhead)";
stroke: @signalColor;
}
.messageLine1 {
2017-04-22 20:37:43 +08:00
stroke-width: 1.5;
stroke-dasharray: "2 2";
2017-04-22 20:37:43 +08:00
stroke: @signalColor;
}
#arrowhead {
2017-04-22 20:37:43 +08:00
fill: @signalColor;
}
2017-04-22 20:37:43 +08:00
#crosshead path {
2017-04-22 20:37:43 +08:00
fill: @signalColor !important;
stroke: @signalColor !important;
}
2017-04-22 20:37:43 +08:00
.messageText {
2017-04-22 20:37:43 +08:00
fill: @signalTextColor;
stroke: none;
}
.labelBox {
stroke: @labelBoxBorderColor;
fill: @labelBoxBkgColor;
}
.labelText {
2017-04-22 20:37:43 +08:00
fill: @labelTextColor;
stroke: none;
}
.loopText {
2017-04-22 20:37:43 +08:00
fill: @labelTextColor;
stroke: none;
}
.loopLine {
2017-04-22 20:37:43 +08:00
stroke-width: 2;
stroke-dasharray: "2 2";
2017-04-22 20:37:43 +08:00
marker-end: "url(#arrowhead)";
stroke: @labelBoxBorderColor;
}
.note {
//stroke: #decc93;
stroke: @noteBorderColor;
fill: @noteBkgColor;
}
.noteText {
2017-04-22 20:37:43 +08:00
fill: black;
stroke: none;
font-family: 'trebuchet ms', verdana, arial;
2017-04-22 20:37:43 +08:00
font-size: 14px;
2017-04-22 20:26:53 +08:00
}