Skip to content

Instantly share code, notes, and snippets.

@illepic
Created June 2, 2015 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save illepic/144ee6f371e5e130f1bf to your computer and use it in GitHub Desktop.
Save illepic/144ee6f371e5e130f1bf to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
.thingy {
background: blue;
}
.i-want-to-extend {
@extend .thingy;
}
.i-want-extend-again {
@extend .thingy;
}
/* I really don't want .i-want-to-extend/.i-want-to-extend-again here at all */
.header .thingy {
margin-left: 5px;
}
.sidebar .thingy {
padding: 5px;
}
.footer .social .thingy {
background: green;
}
.thingy, .i-want-to-extend, .i-want-extend-again {
background: blue;
}
/* I really don't want .i-want-to-extend/.i-want-to-extend-again here at all */
.header .thingy, .header .i-want-to-extend, .header .i-want-extend-again {
margin-left: 5px;
}
.sidebar .thingy, .sidebar .i-want-to-extend, .sidebar .i-want-extend-again {
padding: 5px;
}
.footer .social .thingy, .footer .social .i-want-to-extend, .footer .social .i-want-extend-again {
background: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment