DESCR 655 B

12345678910111213
  1. This module takes a list of CSS files and concatenates them, making sure
  2. to honor any valid @import statements included in the files.
  3. Following the CSS 2.1 spec, @import statements must be the first rules
  4. in a CSS file. Media-specific @import statements will be honored by
  5. enclosing the included file in an @media rule. This has the side effect
  6. of actually *improving* compatibility in Internet Explorer, which
  7. ignores media-specific @import rules but understands @media rules.
  8. It is possible that future versions will include methods to compact
  9. whitespace and other parts of the CSS itself, but this functionality is
  10. not supported at the current time.