mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-15 13:29:40 +02:00
Redering arrow heads depending on relation defined in class diagram.
This commit is contained in:
@@ -19,4 +19,40 @@ g.classGroup line {
|
||||
stroke: @nodeBorder;
|
||||
stroke-width: 1;
|
||||
fill:none;
|
||||
}
|
||||
|
||||
.composition{
|
||||
fill : @nodeBorder;
|
||||
stroke: @nodeBorder;
|
||||
stroke-width:1;
|
||||
}
|
||||
#compositionStart {
|
||||
.composition;
|
||||
}
|
||||
#compositionEnd {
|
||||
.composition;
|
||||
}
|
||||
.aggregation{
|
||||
fill : @nodeBkg;
|
||||
stroke: @nodeBorder;
|
||||
stroke-width:1;
|
||||
}
|
||||
#aggregationStart {
|
||||
.aggregation;
|
||||
}
|
||||
#aggregationEnd {
|
||||
.aggregation;
|
||||
}
|
||||
|
||||
#dependencyStart {
|
||||
.composition;
|
||||
}
|
||||
#dependencyEnd {
|
||||
.composition;
|
||||
}
|
||||
#extensionStart {
|
||||
.composition;
|
||||
}
|
||||
#extensionEnd {
|
||||
.composition;
|
||||
}
|
Reference in New Issue
Block a user