Skip to content

Instantly share code, notes, and snippets.

@EvanLovely
Created May 5, 2014 21:03
Show Gist options
  • Save EvanLovely/11547400 to your computer and use it in GitHub Desktop.
Save EvanLovely/11547400 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.6)
// Compass (v1.0.0.alpha.18)
// ----
body.product {
.select {
color: blue;
.product--special & {// I want this to be body.product.product--special .select
color: red;
}
}
}
body.product .select {
color: blue;
}
.product--special body.product .select {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment