1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2025-12-20 05:17:02 +01:00

Fixed image paths in CSS files

CSS should not use external images (to let the offline copy work smoothly), but some resources are still external
This commit is contained in:
Clipperz
2013-01-08 15:55:07 +01:00
parent 758bd68eee
commit 2e9f8124d1
16 changed files with 369 additions and 369 deletions

View File

@@ -68,11 +68,11 @@ refer to http://www.clipperz.com.
z-index:1;
}
.ydd-drop-nodrop .ydd-drop-icon{
background-image: url(../images/default/dd/drop-no.gif);
background-image: url(./images/default/dd/drop-no.gif);
}
.ydd-drop-ok .ydd-drop-icon{
background-image: url(../images/default/dd/drop-yes.gif);
background-image: url(./images/default/dd/drop-yes.gif);
}
.ydd-drop-ok-add .ydd-drop-icon{
background-image: url(../images/default/dd/drop-add.gif);
}
background-image: url(./images/default/dd/drop-add.gif);
}