Last active
February 7, 2024 15:28
-
-
Save yusukesaitoh/3d0565d5b81c099bb5b40c80c0065106 to your computer and use it in GitHub Desktop.
おだやかBluesky - Blueskyのタイムラインでリプライ数、リポスト数、いいね数を非表示にするCSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 一覧でリプライ数を非表示 */ | |
button[data-testid="replyBtn"] > div { | |
display: none; | |
} | |
/* 一覧でリポスト数を非表示 */ | |
div[data-testid="repostCount"] { | |
display: none; | |
} | |
/* 一覧でいいね数を非表示 */ | |
button[data-testid="likeBtn"] > div { | |
display: none; | |
} | |
/* 詳細でリプライ数を非表示 */ | |
div[data-testid="repostCount-expanded"] > span { | |
display: none; | |
} | |
/* 詳細でいいね数を非表示 */ | |
div[data-testid="likeCount-expanded"] > span { | |
display: none; | |
} | |
/* フォロワー数を非表示 */ | |
a[data-testid="profileHeaderFollowersButton"] > div:first-child { | |
display: none; | |
} | |
/* フォロー中数を非表示 */ | |
a[data-testid="profileHeaderFollowsButton"] > div:first-child { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment