Skip to content

Commit f1fdab0

Browse files
hlyang397theiliad
andauthored
feat: change zoom bar handle cursor to ew-resize (#759)
* feat: change zoom bar handle cursor to ew-resize * Update zoom-bar.ts Co-authored-by: Eliad Moosavi <[email protected]>
1 parent 51fe593 commit f1fdab0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: packages/core/src/components/axes/zoom-bar.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ export class ZoomBar extends Component {
326326
.attr("y", 0)
327327
.attr("width", handleWidth)
328328
.attr("height", handleHeight)
329-
.attr("cursor", "pointer")
329+
.attr("cursor", "ew-resize")
330330
.style("display", null); // always display
331331

332332
// handle-bar
@@ -359,7 +359,7 @@ export class ZoomBar extends Component {
359359
.attr("y", handleYBarDiff)
360360
.attr("width", handleBarWidth)
361361
.attr("height", handleBarHeight)
362-
.attr("cursor", "pointer");
362+
.attr("cursor", "ew-resize");
363363

364364
// Update slider selected area
365365
if (zoombarType === ZoomBarTypes.SLIDER_VIEW) {

0 commit comments

Comments
 (0)