Skip to content

Commit

Permalink
Merge pull request #174 from ICRAR/liu-265
Browse files Browse the repository at this point in the history
optimised dag graph node sizes in translator and engine, now scales w…
  • Loading branch information
M-Wicenec committed Jun 9, 2022
2 parents 95a934d + 4be6764 commit 19a6f70
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
10 changes: 9 additions & 1 deletion daliuge-engine/dlg/manager/web/static/css/session.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,18 @@ svg {

.node g div {
color: #000;
padding: 4px 30px;
padding: 4px 25px 4px 25px;
overflow: hidden;
}

#pg-graph .drop-label.rect{
padding: 4px 0px 4px 0px;
}

#pg-graph .drop-label.parallelogram{
padding: 4px 28px 4px 28px;
}

.node polygon+g div div {
padding-left: 13%
}
Expand Down
4 changes: 2 additions & 2 deletions daliuge-engine/dlg/manager/web/static/js/dm.js
Original file line number Diff line number Diff line change
Expand Up @@ -547,9 +547,9 @@ function _addNode(g, doSpec) {
else if( doSpec.type == 'plain' ) {
notes += 'storage: ' + doSpec.storage;
}

var oid = doSpec.oid;
var html = '<div class="drop-label" id="id_' + oid + '">';
var html = '<div class="drop-label '+typeShape+'" id="id_' + oid + '">';
html += '<span class="notes">' + notes + '</span>';
html += '<span style="font-size: 13px;">' + oid + '</span>';
html += "</div>";
Expand Down
4 changes: 2 additions & 2 deletions daliuge-translator/dlg/dropmake/web/graph_init.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ function _addNode(g, node) {
var typeShape = TYPE_SHAPES[node.category];
var notes = node.text;

var oid = node.oid;
var html = '<div class="drop-label" id="id_' + oid + '">';
var oid = node.oid;
var html = '<div class="drop-label '+typeShape+'" id="id_' + oid + '">';
html += '<span class="notes">' + notes + '</span>';
html += '<span style="font-size: 13px;">' + oid + '</span>';
html += "</div>";
Expand Down
17 changes: 13 additions & 4 deletions daliuge-translator/dlg/dropmake/web/src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -393,15 +393,14 @@
.node rect, .node polygon {
stroke-width: 2.0px;
stroke: #bbb;
height:60px;
padding: 4px 8px;
}

/* DROP states */

#main #dagGraphArea .node :first-child, #main #dagGraphArea rect {
fill: #9ab4d0;
width:300px;
height:85px;
stroke: black;
}

Expand All @@ -414,8 +413,18 @@
font-weight: 700;
}

#main #dagGraphArea .drop-label{
padding: 5% 18%;
.node g div {
color: #000;
padding: 4px 28px 4px 28px;
overflow: hidden;
}

#main #dagGraphArea .drop-label.rect{
padding: 4px 0px 4px 0px;
}

#main #dagGraphArea .drop-label.parallelogram{
padding: 4px 28px 4px 28px;
}

#main #dagGraphArea path.path {
Expand Down

0 comments on commit 19a6f70

Please sign in to comment.