Skip to content

Fixes lost-column too much code generation#258

Merged
peterramsing merged 2 commits intopeterramsing:masterfrom
poxrud:fix-lost-column-rule-repetition
Feb 17, 2016
Merged

Fixes lost-column too much code generation#258
peterramsing merged 2 commits intopeterramsing:masterfrom
poxrud:fix-lost-column-rule-repetition

Conversation

@poxrud
Copy link
Copy Markdown
Contributor

@poxrud poxrud commented Feb 3, 2016

Fixes the issue #256 where lost-column generates two identical css selectors, each with it's own rule, instead of combining them into one.

For example:

.mydiv:nth-child(4n){
  float: right; }
.mydiv:nth-child(4n){
  margin-right: 0; }

Should instead be combined into:

.mydiv:nth-child(4n){
  float: right;
  margin-right: 0;
 }

@peterramsing
Copy link
Copy Markdown
Owner

Epic. Thanks!

@peterramsing peterramsing self-assigned this Feb 3, 2016
@peterramsing peterramsing added this to the 6.7.2 milestone Feb 4, 2016
peterramsing added a commit that referenced this pull request Feb 17, 2016
Fixes lost-column too much code generation
@peterramsing peterramsing merged commit 8342cf5 into peterramsing:master Feb 17, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants