From 720c4157e70d19a68b39bdc7b6b8844e8b89e62d Mon Sep 17 00:00:00 2001 From: "Ashwin V. Mohanan" <9155111+ashwinvis@users.noreply.github.com> Date: Sat, 15 Jul 2023 02:29:16 +0200 Subject: [PATCH] Fix hide_forks and hide_stars options --- github-compact-feed.user.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-compact-feed.user.css b/github-compact-feed.user.css index e003866..afdbc68 100644 --- a/github-compact-feed.user.css +++ b/github-compact-feed.user.css @@ -43,12 +43,12 @@ } } if hide_forks { - .news .fork { + .news .fork, .fork.js-feed-item-view, [classes*="fork js-feed-item-view"] { display: none !important; } } if hide_stars { - .news .watch_started { + .news .watch_started, .watch_started.js-feed-item-view, [classes*="watch_started js-feed-item-view"] { display: none !important; } }