diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-01-29 01:28:00 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-01-29 01:28:00 +0000 |
commit | 897c957a1662a33f34622ea0693cefec3112833f (patch) | |
tree | 99cce08012330f20c3c3bf19aff23e9a5576341e /public | |
parent | d871f351056b7422656e647104aeaae2b9e8a584 (diff) | |
download | redmine-897c957a1662a33f34622ea0693cefec3112833f.tar.gz redmine-897c957a1662a33f34622ea0693cefec3112833f.zip |
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
Diffstat (limited to 'public')
-rw-r--r-- | public/themes/classic/stylesheets/application.css | 10 |
1 files 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); } |