Skip to content

Commit

Permalink
Round corners of RDD boxes on stage page (minor)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Or committed May 4, 2015
1 parent 01ba336 commit 666c03b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,9 @@ function styleDagVizForStage() {
graphContainer().selectAll("svg g.node rect")
.style("fill", "none")
.style("stroke", VizConstants.rddColor)
.style("stroke-width", "2px");
.style("stroke-width", "2px")
.attr("rx", "5") // round corners
.attr("ry", "5");
// TODO: add a legend to explain what a highlighted RDD means
graphContainer().selectAll("svg g.cached rect")
.style("stroke", VizConstants.rddCachedColor);
Expand Down

0 comments on commit 666c03b

Please sign in to comment.