Skip to content

Commit

Permalink
disable mouse pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
csouchet committed Feb 8, 2023
1 parent 396c8ed commit 051a416
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions demo/visualize-path/css/path.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
}

/* ------------------------------------------------ DISABLE EVERYTHING ------------------------------------------------ */
.disableAll.bpmn-type-event:hover, .disableAll.bpmn-type-gateway:hover, .disableAll.bpmn-type-activity:hover {
cursor: default;
}

/* SHAPE & EDGE */
.disableAll.bpmn-type-activity > *,
.disableAll.bpmn-type-event > *,
Expand Down Expand Up @@ -50,6 +54,10 @@
}

/* ------------------------------------------------ POSSIBLE NEXT ------------------------------------------------ */
.possibleNext.bpmn-type-event:hover, .possibleNext.bpmn-type-gateway:hover, .possibleNext.bpmn-type-activity:hover {
cursor: pointer;
}

/* SHAPE & EDGE */
.possibleNext.bpmn-type-activity > *,
.possibleNext.bpmn-type-event > *,
Expand Down

0 comments on commit 051a416

Please sign in to comment.