static: css: Fix image path for resize handle

If the site is deployed to a different root path (e.g. /photos/), the absolute
/images path is broken. Use a relative path instead since the CSS and the images
are both underneath the static directory.
This commit is contained in:
Martin Rubli
2024-02-15 23:11:52 +01:00
parent 6c29c3e839
commit 9ab719213c

View File

@@ -6,7 +6,7 @@
} }
.ui-icon { .ui-icon {
background-image: url('/images/resize-handle-se.png'); background-image: url('../images/resize-handle-se.png');
background-position: -1px -1px; background-position: -1px -1px;
} }