Closed (fixed)
Project:
Sasson
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Dec 2011 at 11:10 UTC
Updated:
2 Apr 2014 at 16:30 UTC
Jump to comment: Most recent
For example :
#parent {
#child {
@extend .hidden;
}
}
Will be parsed into :
#child {
display: none;
}
Instead of :
#parent #child {
display: none;
}
Comments
Comment #1
richthegeek commentedThis is fixed in the Sassy fork of PHamlP - should be fairly easy to port over to the required files to the fork that Sasson uses (or just man up and use Sassy ;D)
The affected file is only tree/SassExtendNode.php (https://github.com/richthegeek/phamlp/blob/master/tree/SassExtendNode.php) and should work without any other changes.
Comment #2
richthegeek commentedWait sorry, that file isn't the solution, it's done elsewhere - give me a few minutes to track it down.
Comment #3
richthegeek commentedThis fix also changed SassRuleNode and maybe SassRootNode - it's been a while since we fixed this so I can't remember for sure which files were involved.
Comment #4
tsi commentedThanks !
http://drupal.org/node/1367622/committers
;)