Skip to content

Instantly share code, notes, and snippets.

@terkel
Created July 16, 2014 12:09
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 terkel/ad06a0fe37fe7eb4676c to your computer and use it in GitHub Desktop.
Save terkel/ad06a0fe37fe7eb4676c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.1)
// Compass (v1.0.0.alpha.20)
// ----
.outer {
color: red;
.inner {
color: green;
@at-root {
#{ selector-replace(&, '.outer', '.outer .foo') } {
color: blue;
}
}
}
}
.bar {
.button {
border: 1px solid;
@at-root {
#{ selector-replace(&, ".button", "a.button") } {
text-decoration: none;
}
}
}
}
.outer {
color: red;
}
.outer .inner {
color: green;
}
.outer .foo .inner {
color: blue;
}
.bar .button {
border: 1px solid;
}
.bar a.button {
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment