From 90e6c775633aeae98dac574ffee2bc76d73a0350 Mon Sep 17 00:00:00 2001 From: Evan Harris Date: Wed, 2 Oct 2019 00:54:55 -0500 Subject: [PATCH] Fix incorrect absolute paths in css Fixes #1256 Signed-off-by: Andrew DeMaria --- .../src/main/webapp/style/default-without-mediaelement.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airsonic-main/src/main/webapp/style/default-without-mediaelement.css b/airsonic-main/src/main/webapp/style/default-without-mediaelement.css index a671bf10..1e8f5b79 100644 --- a/airsonic-main/src/main/webapp/style/default-without-mediaelement.css +++ b/airsonic-main/src/main/webapp/style/default-without-mediaelement.css @@ -458,5 +458,5 @@ img { /* Javascript-zoom related styles */ #zoom { position: absolute; display: none; z-index: 499; -webkit-box-shadow: 0px 5px 25px #000; -moz-box-shadow: 0px 5px 25px #000; box-shadow: 0px 5px 25px #000; } #zoom_img { display: block; cursor: pointer; width: 100%; border: 0; margin: 0; padding: 0; } -#zoom_close { position: absolute; display: none; cursor: pointer; left: -15px; top: -15px; width: 30px; height: 30px; background: url(/script/closebox.png) no-repeat; } -#zoom_spin { position: absolute; display: none; z-index: 525; width: 50px; height: 50px; background: url(/script/spin.png) no-repeat; } +#zoom_close { position: absolute; display: none; cursor: pointer; left: -15px; top: -15px; width: 30px; height: 30px; background: url(../script/closebox.png) no-repeat; } +#zoom_spin { position: absolute; display: none; z-index: 525; width: 50px; height: 50px; background: url(../script/spin.png) no-repeat; }