Created
February 26, 2015 17:50
-
-
Save jackrugile/b0fb3d97c00654895124 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin specify($selector) { | |
@at-root { | |
#{selector-append($selector, &)} { | |
@content; | |
} | |
} | |
} | |
.button { | |
border: none; | |
// Qualify `.button` with `button` | |
@include specify(button) { | |
-webkit-appearance: none; | |
} | |
// Qualify `.button` with `a` | |
@include specify(a) { | |
text-decoration: none; | |
} | |
} |
This file contains hidden or 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
Invalid CSS after "...end($selector, ": expected function argument, was "&)} {" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment