
 Maier Karl - 2015-08-25 10:45:11
if a media query contains more as 2 classes parsing faults.
the nested  {{ }} will close after the 2nd class entry.
this 
-------------------------
@media test {
.test1 { display:block }
.test2 { display:block }
.test3 {display:block }
}
-------------------------
will result
@media test  {
.test1 { display: block;}
.test2 { display: block;}
}
.test3 {
display: block;
}
Best regards Robert