trullock / NUglify

NUglify is a HTML, JavaScript and CSS minification Library for .NET (fork of AjaxMin + new features)
Other
396 stars 79 forks source link

Multiple functions with spaces inbetween in selector not supported #280

Closed pvkekem closed 3 years ago

pvkekem commented 3 years ago

The following selector is not minified correct:

:is(.container) :is(.bold) {
    font-weight: bold;
}

Minifies to :is(.container):is(.bold){font-weight: bold;}

Should be: :is(.container) :is(.bold){font-weight: bold;}

trullock commented 3 years ago

Fixed in 1.16.3