How to change cursor?

2.3k Views Asked by At

In the angular-ui-tree I've noticed that items has the drag or move cursor which is good when having items that we need to be drag-gable.

But how can I set the cursor to normal arrow instead?

2

There are 2 best solutions below

0
On BEST ANSWER

Add following CSS

.angular-ui-tree-handle {
    cursor:default !important;
}
0
On

Use CSS to set the default cursor on the element:

cursor: default;

https://developer.mozilla.org/en-US/docs/Web/CSS/cursor