diff --git a/README.md b/README.md index 7d5512a..5565cfc 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ is on implementing missing features. ## Todo (roughly in this order) -- Line connecting posts in threads - "Show Thread" button - Twitter "Cards" (link previews) - Nitter link previews diff --git a/public/style.css b/public/style.css index c59cff4..90e5641 100644 --- a/public/style.css +++ b/public/style.css @@ -472,11 +472,29 @@ nav { letter-spacing: .01em; } -.thread { +.reply { background-color: #161616; margin-bottom: 10px; } +.after-tweet .status-el::before, .before-tweet .status-el::before, .thread .status-el::before { + background: #8a3731; + content: ''; + position: relative; + width: 3px; + left: 26px; + top: 56px; + margin-bottom: 37px; + margin-left: -3px; + border-radius: 2px; +} + +.thread-last .status-el::before { + background: unset; + width: 0; + margin: 0; +} + .panel { margin: auto; font-size: 130%; diff --git a/src/views/user.nimf b/src/views/user.nimf index efea08a..6be21c5 100644 --- a/src/views/user.nimf +++ b/src/views/user.nimf @@ -113,13 +113,15 @@ #end for #end if + #let afterClass = if conversation.after.len > 0: "thread" else: ""
- ${renderTweet(conversation.tweet)} + ${renderTweet(conversation.tweet, class=afterClass)}
#if conversation.after.len > 0:
- #for tweet in conversation.after: - ${renderTweet(tweet)} + #for i, tweet in conversation.after: + #let class = if i == conversation.after.high: "thread-last" else: "" + ${renderTweet(tweet, class=class)} #end for
#end if @@ -127,9 +129,10 @@ #if conversation.replies.len > 0:
#for thread in conversation.replies: -
- #for tweet in thread: - ${renderTweet(tweet)} +
+ #for i, tweet in thread: + #let class = if i == thread.high: "thread-last" else: "" + ${renderTweet(tweet, class=class)} #end for
#end for