#1542 Alignment between themes

This commit is contained in:
Knut Sveidqvist
2020-07-20 15:15:03 +02:00
parent 1302addcdd
commit 93a8c83a68
7 changed files with 40 additions and 22 deletions

View File

@@ -23,12 +23,12 @@ g.stateGroup rect {
}
g.stateGroup line {
stroke: ${options.nodeBorder};
stroke: ${options.lineColor};
stroke-width: 1;
}
.transition {
stroke: ${options.nodeBorder};
stroke: ${options.lineColor};
stroke-width: 1;
fill: none;
}
@@ -85,7 +85,7 @@ g.stateGroup line {
stroke-width: 1px;
}
#statediagram-barbEnd {
fill: ${options.nodeBorder};
fill: ${options.lineColor};
}
.statediagram-cluster rect {
@@ -114,7 +114,7 @@ g.stateGroup line {
fill: ${options.background};
}
.statediagram-cluster.statediagram-cluster-alt .inner {
fill: #e0e0e0;
fill: '#e0e0e0';
}
.statediagram-cluster .inner {
@@ -128,7 +128,7 @@ g.stateGroup line {
}
.statediagram-state rect.divider {
stroke-dasharray: 10,10;
fill: #efefef;
fill: ${options.altBackground ? options.altBackground : '#efefef'};
}
.note-edge {
@@ -155,8 +155,8 @@ g.stateGroup line {
}
#dependencyStart, #dependencyEnd {
fill: ${options.nodeBorder};
stroke: ${options.nodeBorder};
fill: ${options.lineColor};
stroke: ${options.lineColor};
stroke-width: 1;
}
`;