diff --git a/diagnostics/d3/chord.html b/diagnostics/d3/chord.html index 2dade1aaa57..333862b7465 100644 --- a/diagnostics/d3/chord.html +++ b/diagnostics/d3/chord.html @@ -5,6 +5,17 @@ .node { font: 11px "Helvetica Neue", Helvetica, Arial, sans-serif; } +.node:hover circle { + stroke: red; + stroke-width: 4px; +} + +.node .link { + stroke-width: 0; +} +.node:hover .link { + stroke-width: 4px; +} .link { stroke: steelblue; @@ -12,8 +23,27 @@ fill: none; } +#legend { + position: fixed; + top: 10px; + left: 10px; + font-size: 14px; + background: rgba(255, 255, 255, 0.7); +} + +#legend h1 { + font-weight: 200; + margin: 0px; + padding: 0px; +} +
+