Created
May 22, 2015 10:44
-
-
Save geckotang/92db64745bf02a756ed8 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.4.13) | |
// Compass (v1.0.3) | |
// ---- | |
/* for Sass3.2 */ | |
$block: '.block'; | |
#{$block} { | |
color: green; | |
&__element { | |
color: yellow; | |
} | |
&--modifier { | |
color: blue; | |
& #{$block}__element { | |
color: tomato; | |
} | |
} | |
} | |
/* for >=Sass3.3 */ | |
.block { | |
$_b: &; | |
color: green; | |
&__element { | |
color: yellow; | |
} | |
&--modifier { | |
color: blue; | |
& #{$_b}__element { | |
color: tomato; | |
} | |
} | |
} |
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
/* for Sass3.2 */ | |
.block { | |
color: green; | |
} | |
.block__element { | |
color: yellow; | |
} | |
.block--modifier { | |
color: blue; | |
} | |
.block--modifier .block__element { | |
color: tomato; | |
} | |
/* for >=Sass3.3 */ | |
.block { | |
color: green; | |
} | |
.block__element { | |
color: yellow; | |
} | |
.block--modifier { | |
color: blue; | |
} | |
.block--modifier .block__element { | |
color: tomato; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment