From e0905f971064dd32949d0f039e0a37de53f9444b Mon Sep 17 00:00:00 2001 From: Antoine Goutenoir Date: Thu, 8 Oct 2020 12:47:55 +0200 Subject: [PATCH] fix: make selection helper more salient on sorted emissions --- flaskr/static/js/plots/sorted-emissions-inequality.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flaskr/static/js/plots/sorted-emissions-inequality.js b/flaskr/static/js/plots/sorted-emissions-inequality.js index c128bf9..ab3ef6f 100644 --- a/flaskr/static/js/plots/sorted-emissions-inequality.js +++ b/flaskr/static/js/plots/sorted-emissions-inequality.js @@ -193,13 +193,13 @@ function draw_sorted_emissions_inequality(containerSelector, csvUrl) { .attr("class", "no-pointer-events") .style("display", "none") .style("position", "absolute") - .style("z-index", "-50") + .style("z-index", "10") .style("width", "0px") .style("height", (height) + "px") .style("top", (margin.top) + "px") .style("bottom", "30px") .style("left", "0px") - .style("background", "rgba(60, 200, 60, 0.3)"); + .style("background", "rgba(60, 200, 60, 0.2)"); d3.select(containerSelector) .on("mousemove", function (event) { -- libgit2 0.21.2