Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Forked from starryeyez024/Shorthand-Sass-Extend.css
Created December 12, 2013 23:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blackfalcon/7937413 to your computer and use it in GitHub Desktop.
Save blackfalcon/7937413 to your computer and use it in GitHub Desktop.
Shorthand Sass Extend
.foo, .bar {
background: red;
}
// ----
// 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
.bar
+ext(foo, true)
//instead of:
//@extend .foo !optional
.bar {
background: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment