Skip to content

Instantly share code, notes, and snippets.

@eoneill
Created June 25, 2015 00:13
Show Gist options
  • Save eoneill/8d15e4746beaaeb8e6c4 to your computer and use it in GitHub Desktop.
Save eoneill/8d15e4746beaaeb8e6c4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$placeholders: ();
@mixin placeholder($name) {
$name: "%placeholder-#{$name}";
@if not index($placeholders, $name) {
$placeholders: append($placeholders, $name) !global;
@at-root #{$name} {
@content;
}
}
@extend #{$name};
}
@mixin test {
@include placeholder(test) {
color: red;
}
}
.test .testa {
@include test;
}
.test2 {
@include test;
}
.test3 {
@include test;
}
.test .testa .testa, .test .testa .test2, .test .testa .test3 {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment