Skip to content

Instantly share code, notes, and snippets.

@tdhooper
Created September 4, 2014 12:21
Show Gist options
  • Save tdhooper/68755633642fe320d2de to your computer and use it in GitHub Desktop.
Save tdhooper/68755633642fe320d2de to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.1)
// Compass (v1.0.1)
// ----
.foo {
background: green;
}
.bar {
color: blue;
}
.foo.bar {
border: 2px solid red;
}
/*
* We want the following:
*
* .test {
* background: green;
* color: blue;
* border: 2px solid red;
* }
*/
.test {
@extend .foo;
@extend .bar;
}
.foo, .test {
background: green;
}
.bar, .test {
color: blue;
}
.foo.bar, .test {
border: 2px solid red;
}
/*
* We want the following:
*
* .test {
* background: green;
* color: blue;
* border: 2px solid red;
* }
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment