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

This commit is contained in:
Knut Sveidqvist
2021-05-23 08:12:32 +02:00
parent 6e6ced2cee
commit 529824e2b3
7 changed files with 14 additions and 7 deletions

View File

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