On 7/25/07, ArcticLeo <[EMAIL PROTECTED]> wrote: > > > We need to use the @page rule, but SASS doesn't allow for odd > characters like the @ sign, so we end up having to write straight CSS > for our PDF print CSS. And we would rather not have to... :-)
I never knew Sass abuses the "@" char! This is a serious issue, since "@" is used in CSS not only for "@page". Sass uses the "@" char for its internal compiler directives. Currently, it's only "import". Maybe the "parse_directive" method (engine.rb:273) could be changed so it lets unknown directives pass through instead of raising an error? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
