From 897c957a1662a33f34622ea0693cefec3112833f Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Mon, 29 Jan 2024 01:28:00 +0000 Subject: [PATCH] Use absolute URL (propshaft default format) for images in application.css from classic theme (#39111). git-svn-id: https://svn.redmine.org/redmine/trunk@22662 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/themes/classic/stylesheets/application.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/themes/classic/stylesheets/application.css b/public/themes/classic/stylesheets/application.css index 64ebb11c1..922773599 100644 --- a/public/themes/classic/stylesheets/application.css +++ b/public/themes/classic/stylesheets/application.css @@ -59,8 +59,8 @@ h4 { border-bottom: dotted 1px #c0c0c0; } padding-bottom: 3px; } -#top-menu a.home { background-image: url(../images/home.png); } -#top-menu a.my-page { background-image: url(../../../images/user.png); } -#top-menu a.projects { background-image: url(../../../images/projects.png); } -#top-menu a.administration { background-image: url(../images/wrench.png); } -#top-menu a.help { background-image: url(../../../images/help.png); } +#top-menu a.home { background-image: url(/themes/classic/home.png); } +#top-menu a.my-page { background-image: url(/user.png); } +#top-menu a.projects { background-image: url(/projects.png); } +#top-menu a.administration { background-image: url(/themes/classic/wrench.png); } +#top-menu a.help { background-image: url(/help.png); } -- 2.39.5