ExtendedCss
ExtendedCss copied to clipboard
Selectors separated with , in ext-CSS part not working
https://m.timesofindia.com/entertainment/telugu/movies/news?curpg=10
m.timesofindia.com#?##newslisting .story_left:has(> div[data-ad-id], div[id^="div-gpt"]) should hide about 21 elements (Chrome's ext-CSS is selecting those elements just fine).
Chrome Extension 4.1.55
look like one of the known issues https://github.com/AdguardTeam/ExtendedCss#known-issues
If I'm not wrong, as a workaround :is() can be used, something like:
m.timesofindia.com#?##newslisting .story_left:has(> :is(div[data-ad-id], div[id^="div-gpt"]))