Skip to content

Instantly share code, notes, and snippets.

@geckotang
Created July 18, 2014 07:59
Show Gist options
  • Save geckotang/a15521f1bd785eacc626 to your computer and use it in GitHub Desktop.
Save geckotang/a15521f1bd785eacc626 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
/* 1 */
.list {
%list__item {
background: limegreen;
}
&__item--mod1,
&__item--mod2 { @extend %list__item; }
}
/* 2 */
%list__item {
background: tomato;
}
.list {
&__item--mod1,
&__item--mod2 { @extend %list__item; }
}
/* 3 */
.list {
@at-root {
%list__item {
background: plum;
}
}
&__item--mod1,
&__item--mod2 { @extend %list__item; }
}
/* 4 */
.list {
@at-root {
%list__item {
background: plum;
}
&__item--mod1,
&__item--mod2 { @extend %list__item; }
}
}
/* 1 */
.list .list__item--mod1, .list .list__item--mod2 {
background: limegreen;
}
/* 2 */
.list__item--mod1, .list__item--mod2 {
background: tomato;
}
/* 3 */
.list__item--mod1, .list__item--mod2 {
background: plum;
}
/* 4 */
.list__item--mod1, .list__item--mod2 {
background: plum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment