From f79c02fd0fbe15ea055158806312a9102a147966 Mon Sep 17 00:00:00 2001 From: Aleksey Filippov Date: Thu, 26 Feb 2026 19:43:48 +0300 Subject: [PATCH] fix: correct bubble.png path in minified CSS Minified CSS in web/min/ referenced ../images/png/bubble.png which resolved to a non-existent web/images/png/ directory, causing 404. Fixed to ../azea/assets/images/png/bubble.png where the file actually exists. Co-Authored-By: Claude Opus 4.6 --- erp24/web/min/css_1646055591.css | 2 +- erp24/web/min/css_1646055591.nogz.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erp24/web/min/css_1646055591.css b/erp24/web/min/css_1646055591.css index 5140713d..29e3970a 100644 --- a/erp24/web/min/css_1646055591.css +++ b/erp24/web/min/css_1646055591.css @@ -1840,7 +1840,7 @@ hr.divider:after { position: absolute; width: 100px; height: 100px; - background-image: url(../images/png/bubble.png); + background-image: url(../azea/assets/images/png/bubble.png); background-position: center; background-size: cover; } diff --git a/erp24/web/min/css_1646055591.nogz.css b/erp24/web/min/css_1646055591.nogz.css index bf70b224..c78d7fed 100644 --- a/erp24/web/min/css_1646055591.nogz.css +++ b/erp24/web/min/css_1646055591.nogz.css @@ -1840,7 +1840,7 @@ hr.divider:after { position: absolute; width: 100px; height: 100px; - background-image: url(../images/png/bubble.png); + background-image: url(../azea/assets/images/png/bubble.png); background-position: center; background-size: cover; } -- 2.39.5