Kronuz / pyScss

pyScss, a Scss compiler for Python
MIT License
582 stars 141 forks source link

&:after failed when using @extend #246

Closed ktmud closed 10 years ago

ktmud commented 11 years ago
%a {
  &:after {
      content: '\a';
  }
}
.a-kid {
  @extend %a;
}

Expected result:

.a-kid:after {
  content: '\a';
}

Got:

:after.a-kid {
  content: '\a';
}
eevee commented 10 years ago

Fixed by the pull.