Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Last active August 29, 2015 14:18
Show Gist options
  • Save cimmanon/25ebc0956f781ff6746d to your computer and use it in GitHub Desktop.
Save cimmanon/25ebc0956f781ff6746d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="circle-thing">foo</div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
@mixin smth($selector: true) {
@at-root #{if($selector, selector-nest(&, '.class'), &)} {
color: blue;
}
}
.foo {
@include smth(true);
}
.bar {
@include smth(false);
}
.baz .bar {
@include smth;
}
.baz .buzz {
@include smth(false);
}
.foo .class {
color: blue;
}
.bar {
color: blue;
}
.baz .bar .class {
color: blue;
}
.baz .buzz {
color: blue;
}
<div class="circle-thing">foo</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment