From d6099df51bdaca9f8050a87bbee57774f5da7b8d Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 30 Dec 2023 21:16:30 +0800 Subject: [PATCH] Experiment unindenting deep single replies --- src/app.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/app.css b/src/app.css index 5c6c89d9..8befdfaf 100644 --- a/src/app.css +++ b/src/app.css @@ -686,6 +686,22 @@ a[href^='http'][rel*='nofollow']:visited:not(:has(div)) { pointer-events: none; } +.timeline.contextual > li .replies { + > ul > li:only-child { + > .replies { + > ul > li:only-child { + margin-left: calc(-1 * var(--line-margin-end)); + background-position: calc(16px) 0; + background-size: 100% calc(20px + 8px); + + &:before { + display: none; + } + } + } + } +} + .timeline-deck.compact .status { max-height: max(25vh, 160px); overflow: hidden;