make unidirectional links thinner
This commit is contained in:
parent
59b9b79aa2
commit
5f53ca2f1e
|
@ -24,6 +24,10 @@
|
|||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
.link line.unidirectional {
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
.node ellipse {
|
||||
fill: #fff;
|
||||
stroke: #48f;
|
||||
|
|
|
@ -15,12 +15,17 @@
|
|||
.link line {
|
||||
stroke: #777;
|
||||
stroke-opacity: 1;
|
||||
stroke-width: 1.5px;
|
||||
stroke-width: 2.5px;
|
||||
}
|
||||
|
||||
.link line.unidirectional {
|
||||
stroke-width: 0.8px;
|
||||
}
|
||||
|
||||
.link.vpn line {
|
||||
stroke-dasharray: 0.75px 4px;
|
||||
stroke-linecap: round;
|
||||
stroke-width: 1.5px;
|
||||
}
|
||||
|
||||
.link:hover line {
|
||||
|
|
|
@ -415,6 +415,9 @@ function update() {
|
|||
.style("stroke", function(d) {
|
||||
return linkcolor(Math.max.apply(null, d.quality.split(",")))
|
||||
})
|
||||
.attr("class", function(d) {
|
||||
return d.quality.split(",").length==1?"unidirectional":"bidirectional"
|
||||
})
|
||||
|
||||
link.selectAll("title")
|
||||
.text( function (d) {
|
||||
|
|
Loading…
Reference in a new issue