fix stylesheet so that image links do not start at / as this breaks suburi installs of tracks like http://rails.example.com/tracks .

This commit is contained in:
eriko 2009-12-01 11:20:15 -08:00 committed by Eric Allen
parent d24d44da13
commit 8aac20fe5d
2 changed files with 26 additions and 26 deletions

View file

@ -161,7 +161,7 @@ ul.sf-menu li li li.sfHover ul {
height: 10px;
text-indent: -999em;
overflow: hidden;
background: url('/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
background: url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator { /* give all except IE6 the correct values */
top: .8em;
@ -190,7 +190,7 @@ li.sfHover > a > .sf-sub-indicator {
/*** shadows for all but IE6 ***/
.sf-shadow ul {
background: url('/images/shadow.png') no-repeat bottom right;
background: url('../images/shadow.png') no-repeat bottom right;
padding: 0 8px 9px 0;
-moz-border-radius-bottomleft: 17px;
-moz-border-radius-topright: 17px;