1

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?

Samir Sabri
  • 937
  • 3
  • 11
  • 26

2 Answers2

3

Add following CSS

.angular-ui-tree-handle {
    cursor:default !important;
}
Shreyas
  • 1,927
  • 17
  • 34
2

Use CSS to set the default cursor on the element:

cursor: default;

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

Shomz
  • 37,421
  • 4
  • 57
  • 85