Adjusting classDiagram marker styling

This commit is contained in:
Ashish Jain
2020-06-24 21:46:59 +02:00
parent b190a0eaba
commit 1e400624e0
2 changed files with 16 additions and 15 deletions

View File

@@ -47,45 +47,45 @@ g.classGroup line {
}
@mixin composition {
fill: $nodeBorder;
stroke: $nodeBorder;
fill: $nodeBorder !important ;
stroke: $nodeBorder !important ;
stroke-width: 1;
}
#compositionStart {
#compositionStart, .composition {
@include composition;
}
#compositionEnd {
#compositionEnd, .composition {
@include composition;
}
@mixin aggregation {
fill: $nodeBkg;
stroke: $nodeBorder;
fill: $nodeBkg !important ;
stroke: $nodeBorder !important ;
stroke-width: 1;
}
#aggregationStart {
#aggregationStart, .aggregation {
@include aggregation;
}
#aggregationEnd {
#aggregationEnd, .aggregation {
@include aggregation;
}
#dependencyStart {
#dependencyStart, .dependency {
@include composition;
}
#dependencyEnd {
#dependencyEnd, .dependency {
@include composition;
}
#extensionStart {
#extensionStart , .extension{
@include composition;
}
#extensionEnd {
#extensionEnd, .extension {
@include composition;
}