TweetDeckのスレッド表示を直す

2023.07.14

最近、TweetDeckのスレッド表示がうまくいかない。うまくいかないTweetDeckのスレッド表示

ということでお決まりのユーザーCSSである。スレッドのときだけclassがつくのでやりやすかった。

このコードをBetter TweetDeckのユーザーCSS欄やMarinDeckのカスタムCSSにコピーしてください。.js-component:empty + .tweet-detail-wrapper .js-tweet.tweet-detail.js-has-replies:not(.margin-l--46),
.js-component:empty + .tweet-detail-wrapper .js-tweet.tweet-detail.js-has-replies:not(.margin-l--46) + .detail-view-inline {
margin-left: 46px;
}
.js-component:empty + .tweet-detail-wrapper .js-tweet.tweet-detail.js-has-replies:not(.margin-l--46) div.margin-b--10 {
margin-left: -46px;
}
.js-component:empty + .tweet-detail-wrapper .js-tweet.tweet-detail.js-has-replies:not(.margin-l--46)::before {
content: "";
position: absolute;
width: 3px;
left: 27px;
border-radius: 3px/7px;
margin-top: 38px;
height: calc(100% - 44px);
background-color: #e1e8ed;
}
html.dark .js-component:empty + .tweet-detail-wrapper .js-tweet.tweet-detail.js-has-replies:not(.margin-l--46)::before {
background-color: #3d5466;
}

これにて修正完了。きちんスレッド表示がなされるようになった。スレッド表示が直った
実はある条件を満たすとうまくいかないのだが、それはまあ……見逃してほしい。

コメント一覧
コメント投稿

名前

URL

メッセージ

- CafeLog -