Forked from starryeyez024/Shorthand-Sass-Extend.css
Created
December 15, 2013 21:38
-
-
Save TexRx/7978539 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) |
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; | |
} | |
.bar, .joy { | |
border: pink 1px solid; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment