Skip to content

Commit 7a6010a

Browse files
committedApr 26, 2014
Lighter blue
1 parent 8e6b8af commit 7a6010a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed
 

‎EDAV-project.html

+14-14
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
"stroke-width": "2px",
272272
"fill": "none"}
273273

274-
var linkHighlight = {"stroke": "blue",
274+
var linkHighlight = {"stroke": "#1659F5",
275275
"stroke-width": "4px",
276276
"fill": "none"}
277277

@@ -544,9 +544,9 @@
544544

545545
})
546546
d3.selectAll("." + d.group).attr("fill", color.group[d.group])
547-
d3.selectAll("text." + d.abrev) .attr({"fill": "blue"});
548-
gRankTeams.selectAll("#" + d.abrev).attr('stroke', 'blue')
549-
gMapBubble.selectAll("#" + d.abrev).attr('fill', 'blue')
547+
d3.selectAll("text." + d.abrev) .attr({"fill": "#1659F5"});
548+
gRankTeams.selectAll("#" + d.abrev).attr('stroke', '#1659F5')
549+
gMapBubble.selectAll("#" + d.abrev).attr('fill', '#1659F5')
550550
})
551551
.on("mouseout", function(d){
552552
d.nodes.forEach(function (d, i) {
@@ -667,10 +667,10 @@
667667
d.probability = d.nodes[i].probability
668668
d3.selectAll("." + d.group + "#" + d.node).attr("fill", color.group[d.group])
669669
gBarTeams.selectAll("." + d.group).attr("fill", color.group[d.group])
670-
d3.selectAll("text#" + d.abrev + d.node) .attr("fill", "blue");
671-
d3.selectAll("text#" + d.abrev) .attr("fill", "blue");
672-
gRankTeams.selectAll("#" + d.abrev).attr('stroke', 'blue')
673-
gMapBubble.selectAll("#" + d.abrev).attr('fill', 'blue')
670+
d3.selectAll("text#" + d.abrev + d.node) .attr("fill", "#1659F5");
671+
d3.selectAll("text#" + d.abrev) .attr("fill", "#1659F5");
672+
gRankTeams.selectAll("#" + d.abrev).attr('stroke', '#1659F5')
673+
gMapBubble.selectAll("#" + d.abrev).attr('fill', '#1659F5')
674674
return parseFloat(d.probability*100).toFixed(1) + '%';
675675
}
676676
}
@@ -753,9 +753,9 @@
753753
edge.attr(linkHighlight)
754754
})
755755
d3.selectAll("." + d.group).attr("fill", color.group[d.group])
756-
d3.selectAll("text." + d.abrev) .attr({"fill": "blue"});
757-
gRankTeams.selectAll("#" + d.abrev).attr('stroke', 'blue')
758-
gMapBubble.selectAll("#" + d.abrev).attr('fill', 'blue')
756+
d3.selectAll("text." + d.abrev) .attr({"fill": "#1659F5"});
757+
gRankTeams.selectAll("#" + d.abrev).attr('stroke', '#1659F5')
758+
gMapBubble.selectAll("#" + d.abrev).attr('fill', '#1659F5')
759759
})
760760
.on("mouseout", function(d){
761761
d.nodes.forEach(function (d, i) {
@@ -995,9 +995,9 @@
995995
edge.attr(linkHighlight)
996996
})
997997
d3.selectAll("." + d.group).attr("fill", color.group[d.group])
998-
d3.selectAll("text." + d.abrev) .attr({"fill": "blue"});
999-
gRankTeams.selectAll("#" + d.abrev).attr('stroke', 'blue')
1000-
gMapBubble.selectAll("#" + d.abrev).attr('fill', 'blue')
998+
d3.selectAll("text." + d.abrev) .attr({"fill": "#1659F5"});
999+
gRankTeams.selectAll("#" + d.abrev).attr('stroke', '#1659F5')
1000+
gMapBubble.selectAll("#" + d.abrev).attr('fill', '#1659F5')
10011001
})
10021002
.on("mouseout", function(d){
10031003
d.nodes.forEach(function (d, i) {

0 commit comments

Comments
 (0)
Please sign in to comment.