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

Change Cursor on hover of Selected Tab

4 Answers 333 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Mallikharjun Mulagundla
Top achievements
Rank 1
Mallikharjun Mulagundla asked on 26 Jul 2010, 11:12 AM
Hi,

I am using Tab Strip. There are 2 tabs in that. I wanted to distnguish between selected & Non-Selected Tabs. So, I wanted to change the cursor style(from hand symbol to none) on the hover of Selected Tab.

I have tried the "SelectedCssClass " property as follows.

   cursor

 

 

:none !important;

 


This is working well except one scenario. ie, when I hover my mouse from unselected Tab to Selected Tab, These changes are not getting applied. 

 

 

 

 

Help me to get this resolved.

Thanks, Malli

4 Answers, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 26 Jul 2010, 02:54 PM
Hi Mallikharjun,

I suggest you use the following css style:

div.RadTabStrip .rtsSelected:hover {
  cursor: none;
}


Best wishes,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Mallikharjun Mulagundla
Top achievements
Rank 1
answered on 27 Jul 2010, 11:05 AM
Hi Yana,

Thanks for quick reply.  I have tried the same, still its not working. can you re-check from your end once,

Thanks, Malli
0
Accepted
Yana
Telerik team
answered on 27 Jul 2010, 12:08 PM
Hello Mallikharjun,

The problem is that "cursor" should be set to "default", not to "none":

div.RadTabStrip  .rtsSelected:hover {
  cursor: default;
}

Best regards,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Mallikharjun Mulagundla
Top achievements
Rank 1
answered on 27 Jul 2010, 12:47 PM
Thanks Yana. Its working...
Tags
TabStrip
Asked by
Mallikharjun Mulagundla
Top achievements
Rank 1
Answers by
Yana
Telerik team
Mallikharjun Mulagundla
Top achievements
Rank 1
Share this question
or