mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
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:
parent
d24d44da13
commit
8aac20fe5d
2 changed files with 26 additions and 26 deletions
|
|
@ -73,31 +73,31 @@ h3 {
|
|||
|
||||
/* Rules for the icon links */
|
||||
|
||||
img.edit_item {background-image: url(/images/edit_off.png); background-repeat: no-repeat; border: none;}
|
||||
a:hover img.edit_item {background-image: url(/images/edit_on.png); background-color: transparent; background-repeat: no-repeat; border: none;}
|
||||
img.edit_item {background-image: url(../images/edit_off.png); background-repeat: no-repeat; border: none;}
|
||||
a:hover img.edit_item {background-image: url(../images/edit_on.png); background-color: transparent; background-repeat: no-repeat; border: none;}
|
||||
|
||||
img.delete_item {background-image: url(/images/delete_off.png); background-repeat: no-repeat; border: none;}
|
||||
a:hover img.delete_item {background-image: url(/images/delete_on.png);background-color: transparent;background-repeat: no-repeat; border: none;}
|
||||
img.delete_item {background-image: url(../images/delete_off.png); background-repeat: no-repeat; border: none;}
|
||||
a:hover img.delete_item {background-image: url(../images/delete_on.png);background-color: transparent;background-repeat: no-repeat; border: none;}
|
||||
|
||||
img.starred_todo {background-image: url(/images/staricons.png); background-repeat: no-repeat; border:none; background-position: 0px 0px;}
|
||||
a:hover img.starred_todo {background-image: url(/images/staricons.png); background-repeat: no-repeat; border:none; background-position: -16px 0px;}
|
||||
img.unstarred_todo {background-image: url(/images/staricons.png); background-repeat: no-repeat; border:none; background-position: -32px 0px;}
|
||||
a:hover img.unstarred_todo {background-image: url(/images/staricons.png); background-repeat: no-repeat; border:none; background-position: -48px 0px;}
|
||||
img.starred_todo {background-image: url(../images/staricons.png); background-repeat: no-repeat; border:none; background-position: 0px 0px;}
|
||||
a:hover img.starred_todo {background-image: url(../images/staricons.png); background-repeat: no-repeat; border:none; background-position: -16px 0px;}
|
||||
img.unstarred_todo {background-image: url(../images/staricons.png); background-repeat: no-repeat; border:none; background-position: -32px 0px;}
|
||||
a:hover img.unstarred_todo {background-image: url(../images/staricons.png); background-repeat: no-repeat; border:none; background-position: -48px 0px;}
|
||||
|
||||
a.to_top {background: transparent url(/images/top_off.png) no-repeat;}
|
||||
a.to_top:hover {background: transparent url(/images/top_on.png) no-repeat;}
|
||||
a.to_top {background: transparent url(../images/top_off.png) no-repeat;}
|
||||
a.to_top:hover {background: transparent url(../images/top_on.png) no-repeat;}
|
||||
|
||||
a.up {background: transparent url(/images/up_off.png) no-repeat;}
|
||||
a.up:hover {background: transparent url(/images/up_on.png) no-repeat;}
|
||||
a.up {background: transparent url(../images/up_off.png) no-repeat;}
|
||||
a.up:hover {background: transparent url(../images/up_on.png) no-repeat;}
|
||||
|
||||
a.down {background: transparent url(/images/down_off.png) no-repeat;}
|
||||
a.down:hover {background: transparent url(/images/down_on.png) no-repeat;}
|
||||
a.down {background: transparent url(../images/down_off.png) no-repeat;}
|
||||
a.down:hover {background: transparent url(../images/down_on.png) no-repeat;}
|
||||
|
||||
a.to_bottom {background: transparent url(/images/bottom_off.png) no-repeat;}
|
||||
a.to_bottom:hover {background: transparent url(/images/bottom_on.png) no-repeat;}
|
||||
a.to_bottom {background: transparent url(../images/bottom_off.png) no-repeat;}
|
||||
a.to_bottom:hover {background: transparent url(../images/bottom_on.png) no-repeat;}
|
||||
|
||||
a.show_notes, a.link_to_notes {background-image: url(/images/notes_off.png); background-repeat: no-repeat; padding: 1px; background-color: transparent;}
|
||||
a.show_notes:hover, a.link_to_notes:hover {background-image: url(/images/notes_on.png); background-repeat: no-repeat; padding: 1px; background-color: transparent;}
|
||||
a.show_notes, a.link_to_notes {background-image: url(../images/notes_off.png); background-repeat: no-repeat; padding: 1px; background-color: transparent;}
|
||||
a.show_notes:hover, a.link_to_notes:hover {background-image: url(../images/notes_on.png); background-repeat: no-repeat; padding: 1px; background-color: transparent;}
|
||||
|
||||
/* Structural divs */
|
||||
|
||||
|
|
@ -186,7 +186,7 @@ body.preferences div#input_box {
|
|||
height: 100%;
|
||||
z-index: 102;
|
||||
text-align: center;
|
||||
background-image:url("/images/trans70.png");
|
||||
background-image:url("../images/trans70.png");
|
||||
}
|
||||
|
||||
#overlay #new-recurring-todo, #overlay #edit-recurring-todo {
|
||||
|
|
@ -1030,7 +1030,7 @@ ul#prefs {list-style-type: disc; margin-left: 15px;}
|
|||
font-style:oblique;
|
||||
}
|
||||
input.open_id {
|
||||
background: url(/images/open-id-login-bg.gif) no-repeat;
|
||||
background: url(../images/open-id-login-bg.gif) no-repeat;
|
||||
background-color: #fff;
|
||||
background-position: 0 50%;
|
||||
color: #000;
|
||||
|
|
@ -1179,28 +1179,28 @@ button.positive, .widgets a.positive{
|
|||
color:#fff;
|
||||
}
|
||||
.blockUI.blockOverlay {
|
||||
background-image:url('/images/waiting.gif');
|
||||
background-image:url('../images/waiting.gif');
|
||||
background-repeat:no-repeat;
|
||||
background-position:center center;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.bigWaiting {
|
||||
background-image:url('/images/bigWaiting.gif');
|
||||
background-image:url('../images/bigWaiting.gif');
|
||||
background-repeat:no-repeat;
|
||||
background-position:center 20%;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.blackWaiting {
|
||||
background-image:url('/images/blackWaiting.gif');
|
||||
background-image:url('../images/blackWaiting.gif');
|
||||
background-repeat:no-repeat;
|
||||
background-position:center center;
|
||||
background-color:black;
|
||||
}
|
||||
|
||||
.bigBlackWaiting {
|
||||
background-image:url('/images/bigBlackWaiting.gif');
|
||||
background-image:url('../images/bigBlackWaiting.gif');
|
||||
background-repeat:no-repeat;
|
||||
background-position:center center;
|
||||
background-color:black;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue