I am using multiple class selector for certain elements in my angular js app like the following:
<p class="first second">som text</p>
in my CSS file I have .first and additional more specific properties for .first.second:
.first{
...
}
.first.second{
...
}
My problem is when I run grunt uncss, the generated file read .first and .second class, but not the both together like .first.second the issue is that I've been using this approach and I have thousands of selectors like these in my app.
How I can configure uncss to ignore all selectors defined with multiple classes without to write one by one combined in uncss ignore options?
Is there any convention over configuration that Im not aware?
Thanks!