Created
July 18, 2014 08:30
-
-
Save geckotang/3cacb3035f2f19d9e9f0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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