Skip to content

Instantly share code, notes, and snippets.

@eoneill
Created June 25, 2015 00:20
Show Gist options
  • Save eoneill/87ada8755f365a470224 to your computer and use it in GitHub Desktop.
Save eoneill/87ada8755f365a470224 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 %static {
static: true;
}
@at-root #{$name} {
dynamic: true;
}
}
@extend #{$name};
@extend #{"%static"};
}
.test .testa {
@include placeholder(test);
}
.test2 {
@include placeholder(test);
}
.test3 {
@include placeholder(test);
}
.test .testa, .test2, .test3 {
static: true;
}
.test .testa .testa, .test .testa .test2, .test .testa .test3 {
dynamic: true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment