New networkmaps in progress... (Visual changes)

This commit is contained in:
Arturo Gonzalez 2016-10-06 14:55:20 +02:00
parent f45f1f73e2
commit 209b76a642
2 changed files with 4 additions and 4 deletions

View File

@ -1240,8 +1240,8 @@ function show_networkmap($id = 0, $user_readonly = false, $nodes_and_relations =
}
.node_selected {
stroke:#999;
stroke-width:3;
stroke:#717171;
stroke-width:5;
}
.node_children {

View File

@ -1047,7 +1047,7 @@ function set_positions_graph() {
return d.x;
})
.attr("y", function(d) {
return d.y + node_radius + 12;
return d.y + node_radius + 30;
});
draw_minimap();
@ -2632,7 +2632,7 @@ function draw_elements_graph() {
node_temp.append("text")
.attr("class", "node_text")
.attr("style", "font-size: 32px; font-style:normal; font-weight:normal; line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans")
.attr("style", "font-size: 32px; font-style:normal; font-weight:normal; line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Verdana")
.attr("x", function(d) {
return d.x;
})