Skip to content

Commit

Permalink
changed tree nodes colors
Browse files Browse the repository at this point in the history
  • Loading branch information
KariemSoudy committed Oct 21, 2018
1 parent ca98e08 commit 66b480a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Bonobo.Git.Server/Views/Repository/Graph.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
var y = node.X * h + h / 2;
//if (i <= 12) {
ctx.fillStyle = "#c18b55";
ctx.fillStyle = "#0078e7";
ctx.strokeStyle = "#cccccc";
ctx.lineWidth = 3;
Expand All @@ -130,7 +130,7 @@
ctx.fill();
ctx.closePath();
ctx.fillStyle = "#000";
ctx.fillStyle = "#fff";
ctx.font = "14px Calibri";
ctx.fillText(node.Id, x - 22, y + 5);
Expand All @@ -141,7 +141,7 @@
x = node.X * w2 + w2 / 2;
y = node.Y * h2 + h2 / 2;
ctx2.fillStyle = "#7a3b95";
ctx2.fillStyle = "#f23f33";
ctx2.beginPath();
ctx2.arc(x, y, r2, 0, Math.PI * 2, true);
ctx2.fill();
Expand Down

0 comments on commit 66b480a

Please sign in to comment.