X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBoard.vue;h=88a341983aa3da53e5126adad6c56b3d5b4cd61a;hb=8efb985ef0f123dadc47934734e70795a960ec29;hp=7f2e43e4c343ee1cc9810eb41f869c022daeeed5;hpb=ffeaef854d80445ef87f2cdf4fe71d60347a81bf;p=vchess.git 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