2017-04-05 03:11:26 +08:00
|
|
|
g.classGroup text {
|
2018-03-09 16:23:35 +08:00
|
|
|
fill: $nodeBorder;
|
2017-04-22 20:37:43 +08:00
|
|
|
stroke: none;
|
2017-04-05 03:11:26 +08:00
|
|
|
font-family: 'trebuchet ms', verdana, arial;
|
2017-04-22 23:10:22 +08:00
|
|
|
font-size: 10px;
|
2019-10-04 21:09:49 +02:00
|
|
|
|
|
|
|
.title {
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g.classGroup rect {
|
2018-03-09 16:23:35 +08:00
|
|
|
fill: $nodeBkg;
|
|
|
|
stroke: $nodeBorder;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g.classGroup line {
|
2018-03-09 16:23:35 +08:00
|
|
|
stroke: $nodeBorder;
|
2017-04-22 20:37:43 +08:00
|
|
|
stroke-width: 1;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
|
|
|
|
2018-03-11 20:26:23 +08:00
|
|
|
.classLabel .box {
|
2017-04-05 03:11:26 +08:00
|
|
|
stroke: none;
|
2017-04-22 20:37:43 +08:00
|
|
|
stroke-width: 0;
|
2018-03-09 16:23:35 +08:00
|
|
|
fill: $nodeBkg;
|
2017-04-05 03:11:26 +08:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2018-03-11 20:26:23 +08:00
|
|
|
.classLabel .label {
|
2018-03-09 16:23:35 +08:00
|
|
|
fill: $nodeBorder;
|
2017-04-22 23:10:22 +08:00
|
|
|
font-size: 10px;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.relation {
|
2018-03-09 16:23:35 +08:00
|
|
|
stroke: $nodeBorder;
|
2017-04-05 03:11:26 +08:00
|
|
|
stroke-width: 1;
|
2017-04-22 20:37:43 +08:00
|
|
|
fill: none;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
|
|
|
|
2018-03-09 16:23:35 +08:00
|
|
|
@mixin composition {
|
|
|
|
fill: $nodeBorder;
|
|
|
|
stroke: $nodeBorder;
|
2017-04-22 20:37:43 +08:00
|
|
|
stroke-width: 1;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2017-04-05 03:11:26 +08:00
|
|
|
#compositionStart {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include composition;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2017-04-05 03:11:26 +08:00
|
|
|
#compositionEnd {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include composition;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2018-03-09 16:23:35 +08:00
|
|
|
@mixin aggregation {
|
|
|
|
fill: $nodeBkg;
|
|
|
|
stroke: $nodeBorder;
|
2017-04-22 20:37:43 +08:00
|
|
|
stroke-width: 1;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2017-04-05 03:11:26 +08:00
|
|
|
#aggregationStart {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include aggregation;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2017-04-05 03:11:26 +08:00
|
|
|
#aggregationEnd {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include aggregation;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#dependencyStart {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include composition;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2017-04-05 03:11:26 +08:00
|
|
|
#dependencyEnd {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include composition;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2017-04-05 03:11:26 +08:00
|
|
|
#extensionStart {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include composition;
|
2017-04-05 03:11:26 +08:00
|
|
|
}
|
2017-04-22 20:37:43 +08:00
|
|
|
|
2017-04-05 03:11:26 +08:00
|
|
|
#extensionEnd {
|
2018-03-09 16:23:35 +08:00
|
|
|
@include composition;
|
2017-04-22 20:26:53 +08:00
|
|
|
}
|