Skip to content

Instantly share code, notes, and snippets.

@micahgodbolt
Last active August 29, 2015 14:08
Show Gist options
  • Save micahgodbolt/03d0124efc1ea0ee233e to your computer and use it in GitHub Desktop.
Save micahgodbolt/03d0124efc1ea0ee233e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.6)
// Compass (v1.0.1)
// ----
%child-selector {
[data-foo="local"] > & {
background: blue;
}
}
.class1 {
[data-bar="global"] & {
@extend %child-selector;
}
}
%descendant-selector {
[data-foo="local"] & {
background: blue;
}
}
.class2 {
[data-bar="global"] & {
@extend %descendant-selector;
}
}
[data-bar="global"] [data-foo="local"] > .class1 {
background: blue;
}
[data-foo="local"] [data-bar="global"] .class2, [data-bar="global"] [data-foo="local"] .class2 {
background: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment