Skip to content

v0.7.0

Compare
Choose a tag to compare
@tbela99 tbela99 released this 14 Sep 14:34
· 129 commits to master since this release
fbe89ba
  • fix merging rules
    merging
.a {
    display: none;
}

.b {
    display: none;
}

.c {
    display: none;
}

would produce

.b,.c {
    display: none;
}
  • experimental CSS prefix removal
    • declaration name
    • declaration values
    • exclude -webkit-* gradients
  • css selector validation
    • pseudo element
    • partial pseudo class validation. does not validate parameters
    • attribute selector
    • combinator
    • simple selector
    • nested selector
    • strict mode: allow unknown items such as pseudo classes
      • allow unknown pseudo classes
      • allow unknown attribute selectors
  • strip universal selector when possible

What's Changed

  • add light-dark() and system colors #41 by @tbela99 in #42
  • fix merging rules, css selector validation, experimental prefix remov… by @tbela99 in #44

Full Changelog: v0.6.0...v0.7.0