Skip to content

Instantly share code, notes, and snippets.

@bleathem
Created June 24, 2013 17:34
Show Gist options
  • Save bleathem/5851916 to your computer and use it in GitHub Desktop.
Save bleathem/5851916 to your computer and use it in GitHub Desktop.
LESS mixins miss include only the first definition
.btn-group {
color: blue;
}
.btn-group > .btn {
color: red;
}
.btn-group > .btn {
color: blue;
display: inline;
}
.my-group {
color: blue;
}
.btn-group {
color: blue;
}
.btn-group > .btn {
color: red;
}
.btn-group > .btn {
color: blue;
display: inline;
}
.my-group {
.btn-group;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment