google-code-export / wro4j

Automatically exported from code.google.com/p/wro4j
1 stars 1 forks source link

cssMin remove @media #846

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.set minimize property to true
2.use cssMin as postProcessors
3.launch teh run goal

With the given css file
@media (max-width: 600px){
    .ok, .ko {
        background-color:red;
    }
    .test{
        color:white;
    }
}

I expect something like 
@media (max-width: 600px){.ok, .ko {background-color:red}.test{color:white}}

I Got
.test{color:white;}

What version of the product are you using? On what operating system?
1.7.3

Please provide any additional information below.

Original issue reported on code.google.com by bali...@sfeir.com on 18 Feb 2014 at 4:55