Skip to content

Instantly share code, notes, and snippets.

@robinpokorny
Created January 22, 2014 19:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinpokorny/8565404 to your computer and use it in GitHub Desktop.
Save robinpokorny/8565404 to your computer and use it in GitHub Desktop.
"Silent" classes in LESS
foo,
bar {
background-color: #e0e0e0;
}
foo {
color: blue;
}
bar {
color: green;
}
@import (reference) "reference";
foo {
&:extend(.silent);
color: blue;
}
bar:extend(.silent) {
color: green;
}
.silent {
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment