Last active
December 31, 2015 04:38
-
-
Save starryeyez024/7935156 to your computer and use it in GitHub Desktop.
Shorthand Sass Extend
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
.foo, .bar { | |
background: red; | |
} |
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.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
// add this mixin to your Sass file: | |
@mixin ext($name, $silent: false) | |
@if $silent == true | |
@extend %#{$name} !optional | |
@else | |
@extend .#{$name} !optional | |
// then you may extend other classes in a shorter format: | |
.foo | |
background: red | |
%almond | |
border: pink 1px solid | |
.bar | |
+ext(foo) | |
+ext(almond, true) | |
//instead of: | |
//@extend .foo !optional | |
.joy | |
+ext(almond, true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment