Skip to content

Commit

Permalink
フォロワー画面やトピック画面でもセルが非表示担ってしまうバグを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukesaitoh committed Oct 31, 2020
1 parent d558141 commit b8e4f65
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/styles/contentscript.scss
Original file line number Diff line number Diff line change
Expand Up @@ -163,20 +163,20 @@ body {
}

&.isWhoToFollowHidden {
div[data-testid=primaryColumn] div.css-1dbjc4n[data-testid=UserCell] {
div[data-testid=primaryColumn] > div > div:nth-child(2) > div > div > div:nth-child(3) > section div.css-1dbjc4n[data-testid=UserCell] {
display: none;
}
div[data-testid=primaryColumn] a[href*="/i/connect_people?user_id="] {
div[data-testid=primaryColumn] > div > div:nth-child(2) > div > div > div:nth-child(3) > section a[href*="/i/connect_people?user_id="] {
display: none;
}
}

&.isTopicsToFollowHidden {
div[data-testid=primaryColumn] a[aria-labelledby*=" topic-name"] {
div[data-testid=primaryColumn] > div > div:nth-child(2) > div > div > div:nth-child(3) > section a[aria-labelledby*=" topic-name"] {
display: none;
}
div[data-testid=primaryColumn] a[href*="/i/flow/topics_selector"] {
display: none;
div[data-testid=primaryColumn] > div > div:nth-child(2) > div > div > div:nth-child(3) > section a[href*="/i/flow/topics_selector"] {
display: none;
}
}
}

0 comments on commit b8e4f65

Please sign in to comment.