MC-1730 Fix for failing unit-test

This commit is contained in:
Knut Sveidqvist
2024-07-22 10:12:03 +02:00
parent 64a5c11318
commit 7156735394
2 changed files with 1 additions and 2 deletions

View File

@@ -105,7 +105,6 @@ const getStyles = (options: BlockChartStyleOptions) =>
} }
.node .cluster { .node .cluster {
// fill: ${fade(options.mainBkg, 0.5)};
fill: ${fade(options.clusterBkg, 0.5)}; fill: ${fade(options.clusterBkg, 0.5)};
stroke: ${fade(options.clusterBorder, 0.2)}; stroke: ${fade(options.clusterBorder, 0.2)};
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

View File

@@ -29,7 +29,7 @@ class Theme {
this.darkTextColor = lighten(invert('#323D47'), 10); this.darkTextColor = lighten(invert('#323D47'), 10);
this.border1 = '#ccc'; this.border1 = '#ccc';
this.border2 = rgba(255, 255, 255, 0.25); this.border2 = rgba(255, 255, 255, 0.25);
this.arrowheadColor = 'calculated'; this.arrowheadColor = invert(this.background);
this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif'; this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif';
this.fontSize = '16px'; this.fontSize = '16px';
this.labelBackground = '#181818'; this.labelBackground = '#181818';