Created
June 25, 2015 00:13
-
-
Save eoneill/8d15e4746beaaeb8e6c4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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