#935 Fix for stylink of links. Default theme colors are picked up and styling via themeCSS works

This commit is contained in:
Knut Sveidqvist
2019-12-08 10:10:03 +01:00
parent ddf8016a0c
commit d23ce9fb63
2 changed files with 15 additions and 6 deletions

View File

@@ -213,10 +213,10 @@ export const addEdges = function(edges, g) {
}
break;
case 'dotted':
style = 'stroke: #333; fill:none;stroke-width:2px;stroke-dasharray:3;';
style = 'fill:none;stroke-width:2px;stroke-dasharray:3;';
break;
case 'thick':
style = 'stroke: #333; stroke-width: 3.5px;fill:none';
style = ' stroke-width: 3.5px;fill:none';
break;
}
}