Skip to content

Commit

Permalink
skipped colour in graphadded again
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Wicenec committed Aug 3, 2021
1 parent b656c16 commit 208dd2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
6 changes: 5 additions & 1 deletion daliuge-engine/dlg/manager/web/static/css/progressBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
.node.cancelled :first-child, rect.cancelled {
fill: #cccccc;
}


.node.skipped :first-child, rect.skipped {
fill: #53c4f6;
}

.node.deleted :first-child, rect.deleted {
color: #700000;
}
Expand Down
9 changes: 1 addition & 8 deletions daliuge-translator/dlg/dropmake/web/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function fillOutSettings(){

var blob = new Blob( [ asArray.buffer ], {type: "image/png"} );
saveAs(blob, pgtName+"_Template.png");
});
});
}

function createZipFilename(graph_name){
Expand Down Expand Up @@ -129,11 +129,4 @@ function fillOutSettings(){

function zoomToFit() {
myDiagram.zoomToFit()
// console.log(myDiagram.viewportBounds.width.toString());
// console.log('\n');
// console.log(myDiagram.viewportBounds.height.toString());
// console.log('\n -----');
// console.log(myDiagram.documentBounds.width.toString());
// console.log('\n');
// console.log(myDiagram.documentBounds.height.toString());
}

0 comments on commit 208dd2d

Please sign in to comment.