Skip Menu |

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

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

People
Owner: rmp [...] psyphi.net
Requestors: bgrimm [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: v0.9.3
Fixed in: (no value)



Subject: comma separated selectors broken
#id { a .abc, b .def { color: #fff; } } should render as: #id a .abc, #id b .def { color: #ffffff; } but renders instead as: #id a, #id .abc, #id b, #id .def { color: #ffffff; } If you change the split at line 569 and 574 from 'split/[,\s]+/smx' to: 'split /,\s*/smx', the output is correct.
fixed in 0.97, coming shortly.