jahaziel17 / wro4j

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

CSS Import Processor not handling media specified in @import #795

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 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;

Original issue reported on code.google.com by alex.obj...@gmail.com on 1 Oct 2013 at 2:27

GoogleCodeExporter commented 8 years ago

Original comment by alex.obj...@gmail.com on 5 Nov 2013 at 1:55

GoogleCodeExporter commented 8 years ago

Original comment by alex.obj...@gmail.com on 8 Jan 2014 at 3:07