[#692] change project navigation arrow on hover

- fix project navigation arrows
This commit is contained in:
jwollert 2011-10-07 16:44:27 +02:00 committed by Eric Davis
parent 1897459b76
commit fecfbaf908
3 changed files with 15 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 B

View File

@ -1277,9 +1277,22 @@ a:hover {
width:9px;
height:9px;
}
#main-menu .open .toggler {
background-image:url(../images/arrow-down.png);
#main-menu li .open .toggler {
background-image:url(../images/projectnavi_arrow_up.png);
}
#main-menu li .open:hover .toggler {
background-image:url(../images/projectnavi_arrow_up_white.png);
}
#main-menu li .selected .toggler {
background-image:url(../images/projectnavi_arrow_down_white.png);
}
#main-menu li .selected.open .toggler {
background-image:url(../images/projectnavi_arrow_up_white.png);
}
#main-menu li a:hover .toggler {
background-image:url(../images/projectnavi_arrow_down_white.png);
}
#main-menu li li .toggler {
display:none;
}