Skip to content

Instantly share code, notes, and snippets.

@elezar42
Created July 24, 2014 22:19
Show Gist options
  • Save elezar42/b45dadfcd614054e44ed to your computer and use it in GitHub Desktop.
Save elezar42/b45dadfcd614054e44ed to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.1)
// Compass (v1.0.0.alpha.20)
// ----
%testjlc {
color: black;
&:hover {
color: blue;
}
&.disabled {
color: grey;
}
}
.blah:before {
@extend %testjlc;
}
.blah:before {
color: black;
}
.blah:hover:before {
color: blue;
}
.disabled.blah:before {
color: grey;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment