mermaid/src/less/dark/classDiagram.less

79 lines
945 B
Plaintext
Raw Normal View History

g.classGroup text {
2017-04-22 20:37:43 +08:00
fill: @nodeBorder;
stroke: none;
font-family: 'trebuchet ms', verdana, arial;
font-size: 10px;
}
g.classGroup rect {
2017-04-22 20:37:43 +08:00
fill: @nodeBkg;
stroke: @nodeBorder;
}
g.classGroup line {
stroke: @nodeBorder;
2017-04-22 20:37:43 +08:00
stroke-width: 1;
}
svg .classLabel .box {
stroke: none;
2017-04-22 20:37:43 +08:00
stroke-width: 0;
fill: @nodeBkg;
opacity: 0.5;
}
svg .classLabel .label {
fill: @nodeBorder;
font-size: 10px;
}
.relation {
stroke: @nodeBorder;
stroke-width: 1;
2017-04-22 20:37:43 +08:00
fill: none;
}
2017-04-22 20:37:43 +08:00
.composition {
fill: @nodeBorder;
stroke: @nodeBorder;
2017-04-22 20:37:43 +08:00
stroke-width: 1;
}
2017-04-22 20:37:43 +08:00
#compositionStart {
.composition;
}
2017-04-22 20:37:43 +08:00
#compositionEnd {
.composition;
}
2017-04-22 20:37:43 +08:00
.aggregation {
fill: @nodeBkg;
stroke: @nodeBorder;
2017-04-22 20:37:43 +08:00
stroke-width: 1;
}
2017-04-22 20:37:43 +08:00
#aggregationStart {
.aggregation;
}
2017-04-22 20:37:43 +08:00
#aggregationEnd {
.aggregation;
}
#dependencyStart {
.composition;
}
2017-04-22 20:37:43 +08:00
#dependencyEnd {
.composition;
}
2017-04-22 20:37:43 +08:00
#extensionStart {
.composition;
}
2017-04-22 20:37:43 +08:00
#extensionEnd {
.composition;
2017-04-22 20:26:53 +08:00
}