From ba2f2cb284a13655bcbf3869dff3a48a3c6d222f Mon Sep 17 00:00:00 2001 From: Gerrit-Jan Lubbertsen Date: Tue, 13 Nov 2018 16:32:26 +0100 Subject: [PATCH] Fix issue with marker-end. I had issues with marker-end. Assuming that CSS got more strict over time. --- src/themes/sequence.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/themes/sequence.scss b/src/themes/sequence.scss index 780e8ecf5..0e5714504 100644 --- a/src/themes/sequence.scss +++ b/src/themes/sequence.scss @@ -15,7 +15,7 @@ text.actor { .messageLine0 { stroke-width: 1.5; stroke-dasharray: '2 2'; - marker-end: 'url(#arrowhead)'; + marker-end: url(#arrowhead); stroke: $signalColor; } @@ -57,7 +57,7 @@ text.actor { .loopLine { stroke-width: 2; stroke-dasharray: '2 2'; - marker-end: 'url(#arrowhead)'; + marker-end: url(#arrowhead); stroke: $labelBoxBorderColor; }