uBlock Origin has the ability to apply CSS styles by adding :style() to a filter rule. For example:
superuser.com##.question-hyperlink:style(color: red !important)
Is there an option to select elements based on their existing CSS style? Something like a :has-style() function. For example, if I wanted to hide div elements with a red text color:
! Doesn't work
example.com##div:has-style(color: red)