I was conducting accessibility scans on a local Apex 5.0.4 application and I'm getting several 404 errors for SVG files located in Core.min.css
Broken link: https://my-app/i/themes/apex_ui/img/icons_src/pkg-apps/app-apex-application-archive.svg 404 Not Found
https://my-app/i/themes/theme_42/1.0/css/Core.min.css?v=5.0.4.00.12 line 195
I've tracked it down in the browser developer tools to a series of SVG files referenced in Core.min.css from the Universal Theme (42).
.app-apex-application-archive { // line 849
background-image:url(../../../apex_ui/img/icons_src/pkg-apps/app-apex-application-archive.svg);
background-repeat:no-repeat
}
...
.app-websheet-big-cats {
background-image:url(../../../apex_ui/img/icons_src/pkg-apps/app-websheet-big-cats.svg);
background-repeat:no-repeat
} // line 1020
The relative path referenced here I believe would resolve to
https://my-app/i/themes/apex_ui/img/icons_src/pkg-apps
However, I can't determine how or where to correct this problem. I don't have access to the filesystem on the server so I can't verify the existence of the files in question.
Any help would be appreciated.