Skip to content

Commit

Permalink
fix(shapes.standard): fix cursor style on DoubleLink and ShadowLink (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kumilingus committed Sep 21, 2023
1 parent e291c17 commit 1a9ca06
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/shapes/standard.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -654,13 +654,15 @@ export const DoubleLink = LinkBase.define('standard.DoubleLink', {
tagName: 'path',
selector: 'outline',
attributes: {
'fill': 'none'
'fill': 'none',
'cursor': 'pointer'
}
}, {
tagName: 'path',
selector: 'line',
attributes: {
'fill': 'none'
'fill': 'none',
'pointer-events': 'none'
}
}]
});
Expand Down Expand Up @@ -708,13 +710,15 @@ export const ShadowLink = LinkBase.define('standard.ShadowLink', {
tagName: 'path',
selector: 'shadow',
attributes: {
'fill': 'none'
'fill': 'none',
'pointer-events': 'none'
}
}, {
tagName: 'path',
selector: 'line',
attributes: {
'fill': 'none'
'fill': 'none',
'cursor': 'pointer'
}
}]
});

0 comments on commit 1a9ca06

Please sign in to comment.