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

rtPlus/rtMinus hover over issues

1 Answer 68 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Jiten
Top achievements
Rank 1
Jiten asked on 02 Nov 2011, 07:34 PM
Hi
I am trying to change the plus minus icons on a RAD TreeView. The issue is that when the page is loaded, the rtPlus icon disappears when the mouse hovers over it. Any ideas. note rtMinus is fine.

My skin is as follows:
.RadTreeView_ConcordeLicenceList.rtPlus

{

 

 

background-image: url('TreeView/greyarrow.png') !important;

height: 10px !important;

width: 12px !important;

background-position:0 0 !important;

}

.RadTreeView_ConcordeLicenceList .rtPlus:hover

{

 

background-image: url('../images/treeview/greyarrow.png') !important;

height: 10px !important;

width: 12px !important;

background-position:0 0 !important;

}

.RadTreeView_ConcordeLicenceList .rtMinus

{

background-image: url('TreeView/bluearrow.png') !important;

height: 10px !important;

width: 12px !important;

background-position:0 0 !important;

}

.RadTreeView_ConcordeLicenceList .rtMinus:hover

{

 

background-image: url('TreeView/bluearrow.png') !important;

height: 10px !important;

width: 12px !important;

background-position:0 0 !important;

}



1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 03 Nov 2011, 06:28 AM
Hello Jiten,

You can try the following.

CSS:
<style type="text/css">
 .RadTreeView .rtPlus
 {
  background:url("../Images/button_edit_grey.gif") ! important;
 }
</style>

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