Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created February 26, 2015 15:47
Show Gist options
  • Save cimmanon/47d16030545d90508687 to your computer and use it in GitHub Desktop.
Save cimmanon/47d16030545d90508687 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="circle-thing">foo</div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$active-state: foo;
.small {
// stuff ..
.section1{
// stuff ..
// Multiple nesting levels ..
#menu{
color:#fff;
@at-root #{selector-replace(&, '.section1', '.section1.#{$active-state}')} {
color:red;
}
}
}
}
.small .section1 #menu {
color: #fff;
}
.small .section1.foo #menu {
color: red;
}
<div class="circle-thing">foo</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment