#2088 Add the possibility to theme forks and joins using theme variables

This commit is contained in:
Knut Sveidqvist
2021-05-22 20:13:31 +02:00
parent 4c92592aa1
commit 6e6ced2cee
8 changed files with 21 additions and 22 deletions

View File

@@ -82,11 +82,17 @@ g.stateGroup line {
}
.node circle.state-start {
fill: ${options.lineColor};
stroke: black;
fill: ${options.stateBorder || options.lineColor};
stroke: ${options.stateBorder || options.lineColor};
}
.node .fork-join {
fill: ${options.stateBorder};
stroke: ${options.stateBorder};
}
.node circle.state-end {
fill: ${options.primaryBorderColor};
fill: ${options.innerEndBackground || options.primaryBorderColor};
stroke: ${options.background};
stroke-width: 1.5
}