flowchart css: add cursor pointer style for class .clickable

This commit is contained in:
Thomas LEVEIL
2017-12-03 04:29:28 +01:00
parent e0f74690b0
commit 8cd0e3bb05
3 changed files with 12 additions and 0 deletions

View File

@@ -11,6 +11,10 @@
stroke-width: 1px; stroke-width: 1px;
} }
.node.clickable {
cursor: pointer;
}
.arrowheadPath { .arrowheadPath {
fill: @arrowheadColor; fill: @arrowheadColor;
} }

View File

@@ -11,6 +11,10 @@
stroke-width: 1px; stroke-width: 1px;
} }
.node.clickable {
cursor: pointer;
}
.arrowheadPath { .arrowheadPath {
fill: @arrowheadColor; fill: @arrowheadColor;
} }

View File

@@ -12,6 +12,10 @@
stroke-width: 1px; stroke-width: 1px;
} }
.node.clickable {
cursor: pointer;
}
.arrowheadPath { .arrowheadPath {
fill: @arrowheadColor; fill: @arrowheadColor;
} }