richthegeek / phpsass

A compiler for SASS/SCSS written in PHP, brought up to date (approx 3.2) from a fork of PHamlP: http://code.google.com/p/phamlp/
http://phpsass.com/
382 stars 83 forks source link

bug with Adjacent-Sibling Selector (+) #53

Closed yukulele closed 6 years ago

yukulele commented 12 years ago

the Adjacent-Sibling Selector "+" is buggy with phpsass, exemple:

dl>dt{
    color:red;
    +dd{
        color:green;
    }
}

don't works

workaround (before fix):

dl>dt{
    color:red;
    &+dd{
        color:green;
    }
}