-
-
Save heavymery/4a6e7a4317dd805ab69a to your computer and use it in GitHub Desktop.
BEM mixins in Sass 3.4
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
$elementSeparator: '__'; | |
$modifierSeparator: '--'; | |
@function containsModifier($selector) { | |
$selector: selectorToString($selector); | |
@if str-index($selector, $modifierSeparator) { | |
@return true; | |
} @else { | |
@return false; | |
} | |
} | |
@function selectorToString($selector) { | |
$selector: inspect($selector); //cast to string | |
$selector: str-slice($selector, 2, -2); //remove brackets | |
@return $selector; | |
} | |
@function getBlock($selector) { | |
$selector: selectorToString($selector); | |
$modifierStart: str-index($selector, $modifierSeparator) - 1; | |
@return str-slice($selector, 0, $modifierStart); | |
} | |
@mixin b($block) { | |
.#{$block} { | |
@content; | |
} | |
} | |
@mixin e($element) { | |
$selector: &; | |
@if containsModifier($selector) { | |
$block: getBlock($selector); | |
@at-root { | |
#{$selector} { | |
#{$block+$elementSeparator+$element} { | |
@content; | |
} | |
} | |
} | |
} @else { | |
@at-root { | |
#{$selector+$elementSeparator+$element} { | |
@content; | |
} | |
} | |
} | |
} | |
@mixin m($modifier) { | |
@at-root { | |
#{&}#{$modifierSeparator+$modifier} { | |
@content; | |
} | |
} | |
} | |
@include b(test) { | |
background: red; | |
@include e(element){ | |
font-size: 14px; | |
@include m(big) { | |
font-size: 18px; | |
} | |
}; | |
@include m(modifier) { | |
color: blue; | |
@include e(subelement) { | |
background: gray; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment