This is a migrated thread and some comments may be shown as answers.

Disable hover icon when Treeview is hovered

1 Answer 159 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 04 Jan 2012, 12:47 AM
I am using a RadTreeview (ASP.NET Ajax version 2011.2.915.40) and I want the hyperlink 'hand' icon to not show when a node is hovered. I have successfuly implemented the style below:

 .RadTreeView .rtHover .rtIn
        {
           background: none !important;
           border: none !important;
           padding: 4px 3px 3px !important;
           background-image: none !important;
        }

and this removes the highlight color when nodes are hovered.

I really need to find a way to allow the mousepointer to remain the default arrow when the control is hovered. I've noticed that the hand appears as soon as the mouse enters the TreeView control - even if a node is not being hovered.

How can I do this?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 04 Jan 2012, 06:45 AM
Hello,

Try the following CSS.
CSS:
.rtPlusHover,.rtMinusHover
  {
     cursor:default !important;
  }

Thanks,
Princy.
Tags
TreeView
Asked by
John
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or