Skip to content

Conversation

iffy
Copy link

@iffy iffy commented Jul 17, 2014

Is this repo the place for this bug? Or should this be filed with libsass?

Given this SCSS:

%foo {
    color: red;
    @media print {
      color: black;
    }
}
.hey {
    @extend %foo;
}

I expect this CSS (and the Ruby Sass gem produces this):

.hey {
  color: red; }
@media print {
  .hey {
    color: black; } }

But instead I get this (that %foo is in here instead of .hey is the bug):

.hey {
  color: red; }
@media print {
  %foo {
    color: black; } }

@iffy
Copy link
Author

iffy commented Jul 17, 2014

Okay, it's a known bug: sass/libsass#146 Sorry for the noise.

@iffy iffy closed this Jul 17, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant