Skip to content

Instantly share code, notes, and snippets.

@aubricus
Created March 14, 2015 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aubricus/a088aca3a49d20c2e73a to your computer and use it in GitHub Desktop.
Save aubricus/a088aca3a49d20c2e73a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
@mixin foo($section){
.foo.#{$section} & {
@content;
}
}
.bar {
.qux {
@include foo('foo-section') {
color: red;
}
}
}
.foo.foo-section .bar .qux {
color: red;
}
@aubricus
Copy link
Author

Mixin to: Target a parent selector from a nested declaration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment