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

dotted line around listbox item on active state

1 Answer 86 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Joseph Bonanno
Top achievements
Rank 1
Joseph Bonanno asked on 22 Jul 2011, 05:02 PM
Hello-

I'm trying to remove the dotted line inserted on the active state of an item in a listbox. I've isolate the class to:

.RadListBox

 

.rlbGroup .rlbActive

 

{

 

border: 1px dotted #555;

 

 

padding: 1px 4px;

 

}


but making changes to this or any surrounding class seems to have no effect. Is there a way to get rid of this dotted line? I've search the entire solution for any other references to dotted borders and found only this.


Images attached for reference

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 25 Jul 2011, 09:27 AM
Hello Joseph,

Try the following CSS to achieve your requirement.
CSS:
<style type="text/css">
      .RadListBox .rlbGroup .rlbActive
      {
          bordernone !important;
      }
  </style>

Thanks,
Shinu.
Tags
ListBox
Asked by
Joseph Bonanno
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or