There is 1 comment.
 
 
XWiki Platform / cid:jira-generated-image-avatar-09059af4-63a0-49a8-854a-baa855cc6ec9 XWIKI-22206 Open

Minify CSS removes spaces from SVG background-image

 
View issue   ยท   Add comment
 

1 comment

 
cid:jira-generated-image-avatar-91ee62e1-a980-4d2a-b0a9-486ea98cfe6f Charpentier Lucas on 22/May/25 17:13
 

YUI CSS compressor does extract data URLs with the regex

Pattern p = Pattern.compile("(?i)url\\(\\s*([\"']?)data
:");

to avoid breaking them. However, other kinds of URLs are treated as normal.

XWiki-platform code starting the minification: https://github.com/xwiki/xwiki-platform/blob/6096b83777fb3a12f9bcc3b9992ddd58f2fbd32a/xwiki-platform-core/xwiki-platform-skin/xwiki-platform-skin-skinx/src/main/java/com/xpn/xwiki/web/sx/CssExtension.java#L63-L65