Date: 2018-08-06 06:51
Posted By: Chris Taylor (chrisbt)
I found the same issue when testing cgjs_render to output minified css.
version: 1.61.1
This seems to occur when there is a CSS sub-selector that is a class. The space
the defines the sub-selector is removed:
.widget .services {display:inline-block;}
when minified becomes:
.widget.services{display:inline-block;}
If the sub-selector is an element, the space is correctly preserved.
.news-summary li {display:block;}
when minified becomes:
.news-summary li{display:block;}
Date: 2021-04-13 08:44
Posted By: TimdeBuurman (timdebuurman)
Hi,
I still keep my nominify='true' tag active in cgcss_add, because this issue
still occures.
Right now i'm at CGExtensions version 1.65.2 and CMSMS version 2.2.15
It would be nice to also minify the css output for better performance.