Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Missing svg files in Apex Core CSS

Mark FaineApr 17 2018 — edited Apr 17 2018

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.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 15 2018
Added on Apr 17 2018
4 comments
384 views