Fixed a rendering issue introduced while trying to fix dark mode. This should fix the rendering of note text for all current themes.

This commit is contained in:
Chris Moran
2020-06-14 13:42:25 -04:00
parent 0e85c814e1
commit 9d413680d9
11 changed files with 1959 additions and 727 deletions

View File

@@ -75,8 +75,8 @@ text.actor > tspan {
fill: $noteBkgColor;
}
.noteText {
fill: $actorBkg;
.noteText, .noteText > tspan {
fill: $noteTextColor;
stroke: none;
}
@@ -94,14 +94,3 @@ text.actor > tspan {
fill: $activationBkgColor;
stroke: $activationBorderColor;
}
g > rect[class="note"] {
stroke: $noteBorderColor;
fill: $noteBkgColor;
}
g > text[class="noteText"] > tspan {
stroke: $actorBkg;
fill: $actorBkg;
stroke-width: 1px;
}