From 8efb985ef0f123dadc47934734e70795a960ec29 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Tue, 21 Apr 2020 15:16:24 +0200 Subject: [PATCH] Lighter color for diagonal lines on board --- client/src/components/Board.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/client/src/components/Board.vue b/client/src/components/Board.vue index 7f2e43e4..88a34198 100644 --- a/client/src/components/Board.vue +++ b/client/src/components/Board.vue @@ -568,7 +568,11 @@ export default { this.coordsToXY(line[1], bPos.top, bPos.left, squareWidth); let path = document.createElementNS("http://www.w3.org/2000/svg", "path"); - path.classList.add("svg-line"); + if (line[0][0] == line[1][0] || line[0][1] == line[1][1]) + path.classList.add("svg-line"); + else + // "Diagonals" are drawn with a lighter color (TODO: generalize) + path.classList.add("svg-diag"); path.setAttribute( "d", "M" + lStart.x + "," + lStart.y + " " + @@ -844,6 +848,9 @@ export default { .svg-line stroke: black +.svg-diag + stroke: grey + .arrow-head fill: #5f0e78 -- 2.44.0