Skip to content
Snippets Groups Projects
Commit 43f458a3 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

use currentcolor

parent 9cb35d92
No related branches found
No related tags found
No related merge requests found
Pipeline #129910 waiting for manual action
...@@ -269,7 +269,7 @@ function draw() { ...@@ -269,7 +269,7 @@ function draw() {
.attr("y1", yScaleVal.gene + geneHeightVal / 2) .attr("y1", yScaleVal.gene + geneHeightVal / 2)
.attr("x2", computedPlotWidth.value + marginRight) .attr("x2", computedPlotWidth.value + marginRight)
.attr("y2", yScaleVal.gene + geneHeightVal / 2) .attr("y2", yScaleVal.gene + geneHeightVal / 2)
.attr("stroke", "black") .attr("stroke", "currentColor")
.attr("stroke-width", "2px") .attr("stroke-width", "2px")
gOperon gOperon
...@@ -405,7 +405,7 @@ function drawGenes(operonGroup: d3.Selection<SVGGElement, any, SVGElement | null ...@@ -405,7 +405,7 @@ function drawGenes(operonGroup: d3.Selection<SVGGElement, any, SVGElement | null
const genePathSelection = genesSelection const genePathSelection = genesSelection
.select("path.gene") .select("path.gene")
.attr("stroke", "black") .attr("stroke", "currentColor")
.attr("stroke-width", 2) .attr("stroke-width", 2)
genePathSelection genePathSelection
.transition() .transition()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment