Open gulench opened 11 years ago
Consider the following CSS files:
screen.css:
body { background: white; }
print.css:
body { background: none; }
all.css:
@import 'screen.css' screen, projection; @import 'print.css' print;
The generated CSS file for all.css does not appropriately contain the media specified in the @import lines; resulting CSS file is shown below:
body { background: white; } body { background: none; } screen, projection; print;
Thanks for reporting this issue.
Consider the following CSS files:
screen.css:
print.css:
all.css:
The generated CSS file for all.css does not appropriately contain the media specified in the @import lines; resulting CSS file is shown below: