#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

@@ -38,7 +38,7 @@ g.classGroup line {
}
.relation {
stroke: ${options.nodeBorder};
stroke: ${options.lineColor};
stroke-width: 1;
fill: none;
}
@@ -48,14 +48,14 @@ g.classGroup line {
}
#compositionStart, #compositionEnd, #dependencyStart, #dependencyEnd, #extensionStart, #extensionEnd {
fill: ${options.nodeBorder};
stroke: ${options.nodeBorder};
fill: ${options.lineColor};
stroke: ${options.lineColor};
stroke-width: 1;
}
#aggregationStart, #aggregationEnd {
fill: ${options.nodeBkg};
stroke: ${options.nodeBorder};
stroke: ${options.lineColor};
stroke-width: 1;
}
`;