Commit e0905f971064dd32949d0f039e0a37de53f9444b

Authored by Antoine Goutenoir
1 parent 771b70f5
Exists in master

fix: make selection helper more salient on sorted emissions

Co-authored by: Adrenesis <adrenesis@gmail.com>
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
flaskr/static/js/plots/sorted-emissions-inequality.js
... ... @@ -193,13 +193,13 @@ function draw_sorted_emissions_inequality(containerSelector, csvUrl) {
193 193 .attr("class", "no-pointer-events")
194 194 .style("display", "none")
195 195 .style("position", "absolute")
196   - .style("z-index", "-50")
  196 + .style("z-index", "10")
197 197 .style("width", "0px")
198 198 .style("height", (height) + "px")
199 199 .style("top", (margin.top) + "px")
200 200 .style("bottom", "30px")
201 201 .style("left", "0px")
202   - .style("background", "rgba(60, 200, 60, 0.3)");
  202 + .style("background", "rgba(60, 200, 60, 0.2)");
203 203  
204 204 d3.select(containerSelector)
205 205 .on("mousemove", function (event) {
... ...