Skip Menu |

This queue is for tickets about the Text-Sass CPAN distribution.

Report information
The Basics
Id: 74181
Status: resolved
Priority: 0/
Queue: Text-Sass

People
Owner: Nobody in particular
Requestors: dread.deimos [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Bug report for Text::Sass
Date: Fri, 20 Jan 2012 13:37:49 +0200
To: bug-Text-Sass [...] rt.cpan.org
From: Andrei Arsenin <dread.deimos [...] gmail.com>
Module version: v0.93 Perl version: v5.12.4 OS: Linux Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 i686 i386 GNU/Linux Following SCSS code: a { font-weight: bold; text-decoration: none; &:hover { text-decoration: underline; } body.firefox & { font-weight: normal; } } Compiles to this CSS: a { font-weight: bold; text-decoration: none; } :hover { text-decoration: underline; } { font-weight: normal; } Which isn't valid according to "Referencing Parent Selectors" section of sass-lang.com documentation: http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#referencing_parent_selectors_
Should be resolved with 0.95, just uploaded to CPAN. Thanks for your bug reports, sorry for the terrible code!