Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在angular-ui-tree中,我注意到项目具有拖动或移动光标,这在我们需要可拖动的项目时很好。
但是我怎样才能将光标设置为普通箭头呢?
添加以下CSS
.angular-ui-tree-handle { cursor:default !important; }
使用 CSS 设置元素上的默认光标:
cursor: default;
https://developer.mozilla.org/en-US/docs/Web/CSS/cursor