From 8cd0e3bb054892b2e8ccc7987a6fcd8e5850710c Mon Sep 17 00:00:00 2001 From: Thomas LEVEIL Date: Sun, 3 Dec 2017 04:29:28 +0100 Subject: [PATCH] flowchart css: add cursor pointer style for class .clickable --- src/less/dark/flow.less | 4 ++++ src/less/default/flow.less | 4 ++++ src/less/forest/flow.less | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/src/less/dark/flow.less b/src/less/dark/flow.less index dcabafdd0..ac833b34e 100644 --- a/src/less/dark/flow.less +++ b/src/less/dark/flow.less @@ -11,6 +11,10 @@ stroke-width: 1px; } +.node.clickable { + cursor: pointer; +} + .arrowheadPath { fill: @arrowheadColor; } diff --git a/src/less/default/flow.less b/src/less/default/flow.less index aa97b0177..7a9ead929 100644 --- a/src/less/default/flow.less +++ b/src/less/default/flow.less @@ -11,6 +11,10 @@ stroke-width: 1px; } +.node.clickable { + cursor: pointer; +} + .arrowheadPath { fill: @arrowheadColor; } diff --git a/src/less/forest/flow.less b/src/less/forest/flow.less index 2b3469b6e..e7602646a 100644 --- a/src/less/forest/flow.less +++ b/src/less/forest/flow.less @@ -12,6 +12,10 @@ stroke-width: 1px; } +.node.clickable { + cursor: pointer; +} + .arrowheadPath { fill: @arrowheadColor; }