sass/ruby-sass

Incorrect media query merging edge case

nex3 opened this issue · 0 comments

nex3 commented

The following input:

@media print {
  @media not screen and (color) {x {y: z}}
}

produces @media print and (color), where it should just produce @media print, since the not in not screen and (color) applies to (color) as well as screen.