Small fixes
This commit is contained in:
parent
a4a4a5763e
commit
0737c09e1f
2 changed files with 16 additions and 7 deletions
|
@ -312,7 +312,16 @@ var linkText = link
|
||||||
.selectAll(".node")
|
.selectAll(".node")
|
||||||
.data(graph.nodes)
|
.data(graph.nodes)
|
||||||
.enter().append("g")
|
.enter().append("g")
|
||||||
.attr("class", function(d) { return 'node ' + d['@type']; })
|
.attr("class", function(d) {
|
||||||
|
let baseClasses = 'node ' + d['@type'];
|
||||||
|
if(d['@type']) {
|
||||||
|
let slashpos = d['@type'].lastIndexOf('/');
|
||||||
|
if(slashpos > -1) {
|
||||||
|
baseClasses += ' ' + d['@type'].substr(slashpos + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return baseClasses;
|
||||||
|
})
|
||||||
;
|
;
|
||||||
var getViewbox = function() {
|
var getViewbox = function() {
|
||||||
return svg.attr("viewBox").split(" ").map(parseFloat);
|
return svg.attr("viewBox").split(" ").map(parseFloat);
|
||||||
|
@ -949,7 +958,7 @@ nodeTitle
|
||||||
|
|
||||||
// scale according to text length:
|
// scale according to text length:
|
||||||
if(textLength > nodeSize * 2) {
|
if(textLength > nodeSize * 2) {
|
||||||
self.attr('transform', `scale(${(nodeSize * 2) / textLength})`);
|
self.attr('transform', `scale(${(nodeSize * 2) / textLength / 1.05})`);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
;
|
;
|
||||||
|
|
|
@ -122,15 +122,15 @@ g.node{
|
||||||
// font-family: "CMU Bright", sans-serif;
|
// font-family: "CMU Bright", sans-serif;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
|
|
||||||
// TODO: make this valid
|
|
||||||
// g[class*="ImageObject"] & {
|
|
||||||
// display: none;
|
|
||||||
// }
|
|
||||||
|
|
||||||
tspan{
|
tspan{
|
||||||
text-anchor:middle;
|
text-anchor:middle;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
&.ImageObject{
|
||||||
|
text.nodeTitle {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.relationship{
|
.relationship{
|
||||||
|
|
Loading…
Reference in a new issue