There is no error, the output I get is the rules for each layout
section, but without the body#layout_selector selector... sass just
removes it and outputs starting at #primary.
Chris Eppstein
unread,
Nov 13, 2009, 6:59:37 PM11/13/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ha...@googlegroups.com
Looks like you found a bug. here's a few more (simpler) cases of weirdness:
>>> Sass
!argument = "asdf"
!bar = "##{!argument}"
body#{!bar}
#foo
color: blue
=======
body##{!argument} #foo {
color: blue; }
<<<< CSS
>>>> Sass
!argument = "asdf"
!bar = "#" + !argument
body#{!bar}
#foo
color: blue
========
body"#"asdf #foo {
color: blue; }
<<<< CSS
Plus I get
DEPRECATION WARNING:
On line 2, character 8
Implicit strings have been deprecated and will be removed in version 2.4.
'"#"' was not quoted. Please add double quotes (e.g. ""#"").
$ sass -i
>> !bar = "#"
DEPRECATION WARNING:
On line 1, character 8
Implicit strings have been deprecated and will be removed in version 2.4.
'"#"' was not quoted. Please add double quotes (e.g. ""#"").