Skip to content

Instantly share code, notes, and snippets.

@yusukesaitoh
Last active February 7, 2024 15:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yusukesaitoh/3d0565d5b81c099bb5b40c80c0065106 to your computer and use it in GitHub Desktop.
Save yusukesaitoh/3d0565d5b81c099bb5b40c80c0065106 to your computer and use it in GitHub Desktop.
おだやかBluesky - Blueskyのタイムラインでリプライ数、リポスト数、いいね数を非表示にするCSS
/* 一覧でリプライ数を非表示 */
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