The @import directive is missing and ending semicolon when importing
CSS files. I would expect the following line ....
@import css/myfile
to be transformed into something like this ...
@import 'css/myfile.css';
Unfortunately, the quotes and the trailing semicolon are missing from
the generated content. Attached is a patch for "lib/sass/engine.rb"
that fixes the problem.
Blessings,
TwP
295c295
< nodes << Tree::ValueNode.new("@import #{filename}",
@options[:style])
---
> nodes << Tree::ValueNode.new("@import '#{filename}';",
> @options[:style])
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/haml?hl=en
-~----------~----~----~----~------~----~------~--~---