[Glitch] Fix redundant indentation on Post reply indicator

Port 56fa1b93416d7172279bb6d4ab90fa01f92a9b0f to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
diondiondion 2026-06-22 11:17:10 +02:00 committed by Claire
parent 62b479a852
commit ea35729b77
2 changed files with 2 additions and 2 deletions

View File

@ -727,7 +727,7 @@ class Status extends ImmutablePureComponent {
return (
<Hotkeys handlers={handlers} focusable={!unfocusable}>
<div
className={classNames('status__wrapper', 'focusable', `status__wrapper-${status.get('visibility')}`, { 'status__wrapper-reply': !!status.get('in_reply_to_id'), unread })}
className={classNames('status__wrapper', 'focusable', `status__wrapper-${status.get('visibility')}`, { 'status__wrapper-reply': !!status.get('in_reply_to_id'), 'status__wrapper--in-thread': !!rootId, unread })}
{...selectorAttribs}
tabIndex={unfocusable ? null : 0}
data-featured={featured ? 'true' : null}

View File

@ -1806,7 +1806,7 @@ body > [data-popper-placement] {
font-weight: 500;
color: var(--color-text-secondary);
.status__wrapper-reply & {
.status__wrapper-reply.status__wrapper--in-thread & {
--thread-margin: calc(46px + 8px);
margin-inline-start: var(--thread-margin);