Skip to content
Snippets Groups Projects
Commit 2d86441e authored by Fry, Janell's avatar Fry, Janell
Browse files

IOW-304: Moved brush handle fill to css file, highlighted transition seems to...

IOW-304: Moved brush handle fill to css file, highlighted transition seems to have to occur separately, picked from suggested coors.
parent 447f3527
No related branches found
No related tags found
No related merge requests found
......@@ -82,11 +82,10 @@ export const drawGraphBrush = function(container, store) {
group.call(graphBrush);
// Fill & round corners of brush handles, set mouseover highlight
svg.selectAll('.handle').style('fill', '#022F54').style('opacity', .5)
.style('width', 8).attr('stroke', '#000000').attr('stroke-width', '#000000')
svg.selectAll('.handle').classed('brush-handle-fill', true)
.attr('rx',15).attr('ry',15) // Round corners
.on('mouseover', function(){
svg.selectAll('.handle').transition().style('fill','#CCFFFF').duration(1000).transition().style('fill','#022F54').duration(1000);
svg.selectAll('.handle').transition().style('fill','#e1e7f1').duration(1000).transition().style('fill','#345d96').duration(1000);
});
graphBrush.move(group, selection);
......
......@@ -221,3 +221,11 @@
}
}
}
.brush-handle-fill {
fill: #345d96;
opacity: .5;
width: 8px;
stroke: #000000;
stroke-width: 1px;
}
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