Skip to content

Instantly share code, notes, and snippets.

@joelpittet
Created October 13, 2015 18:50
Show Gist options
  • Select an option

  • Save joelpittet/5c98b5df23f47d7c5ad1 to your computer and use it in GitHub Desktop.

Select an option

Save joelpittet/5c98b5df23f47d7c5ad1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.component {
.svg {
// Default Nested.
color: pink;
}
}
.component {
& .svg {
// Explicit reference.
color: pink;
}
}
.component {
html.svg & {
// Explicit moved reference!!!! FTW.
color: pink;
}
}
.component {
html.svg & .svg {
// Middle!
color: pink;
}
}
.component .svg {
color: pink;
}
.component .svg {
color: pink;
}
html.svg .component {
color: pink;
}
html.svg .component .svg {
color: pink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment