Skip to content

Instantly share code, notes, and snippets.

@geckotang
Created July 18, 2014 08:30
Show Gist options
  • Save geckotang/3cacb3035f2f19d9e9f0 to your computer and use it in GitHub Desktop.
Save geckotang/3cacb3035f2f19d9e9f0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
/* 2: @at-rootを使ってPlaceholderをBlockの外に出すパターン */
.list {
@at-root {
%list__item {
background: plum;
}
}
//
//
//
//
//なんやかんやで長くなって、extendするところまで距離がある場合
//
//
//
//
&__item--mod1 { @extend %list__item; color: salmon; }
&__item--mod2 { @extend %list__item; color: chocolate; }
}
@charset "UTF-8";
/* 2: @at-rootを使ってPlaceholderをBlockの外に出すパターン */
.list__item--mod1, .list__item--mod2 {
background: plum;
}
.list__item--mod1 {
color: salmon;
}
.list__item--mod2 {
color: chocolate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment