In dynatree with the vista-skin when you hover over a tree item it has a hover effect where it has a blue background.
Additionally when you click the item to check it it has a orange border in chrome and a dotted border in IE.
I'm trying to remove both of these so that there is no effect on hover or once clicked.
See selectMode 3 for an example: wwwendt.de/tech/dynatree/doc/sample-select.html
Update: I have found in /src/skin-vista/ui.dynatree.css if you comment out the following blocks it will prevent the blue highlight color. Additionally there is a line you need to uncomment to fix the outline that the webbrowser puts in as shown below.
/*Comment this out
ul.dynatree-container a:hover
{
/* text-decoration: underline; */
background: #F2F7FD; /* light blue */
border-color: #B8D6FB; /* darker light blue */
}
*/
/*Comment this out
span.dynatree-active a
{
border: 1px solid #99DEFD;
background-color: #D8F0FA;
}
*/
ul.dynatree-container a
/*, ul.dynatree-container a:visited*/
{
/*The line below was originally commented out, uncomment it to remove the orange/dotted border*/
outline: 0; /* @ Firefox, prevent dotted border after click */
}