Skip to content

1.44.0

Compare
Choose a tag to compare
@github-actions github-actions released this 16 Aug 13:52
bdc68f3

Commits to master since this release
Commits since last release

To install the stable build:


New procedural cosmetic filter operator: :matches-media()

Commit

The argument must be a valid media query as documented on MDN, i.e. what appears between the @media at-rule and the first opening curly bracket (including the parentheses when required).

Best practice:

Use :matches-media() after plain CSS selectors, if any.

Good: example.com###target-1 > .target-2:matches-media((min-width: 800px))

Bad (though this will still work): example.com##:matches-media((min-width: 800px)) #target-1 > .target-2

Fixes: