From 45ec4c93c0c74318694f033f8cecd384d2793dfb Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 20 Aug 2025 16:39:58 +0200 Subject: [PATCH] Fix display of quotes in threads in WebUI (#35834) --- .../styles/mastodon/components.scss | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index bb6eb8fca28..366824b6a1e 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -1482,18 +1482,19 @@ body > [data-popper-placement] { border-bottom: 0; - .status__content, - .status__action-bar, - .media-gallery, - .video-player, - .audio-player, - .attachment-list, - .picture-in-picture-placeholder, - .more-from-author, - .status-card, - .hashtag-bar, - .content-warning, - .filter-warning { + & > .status__content, + & > .status__action-bar, + & > .media-gallery, + & > .video-player, + & > .audio-player, + & > .attachment-list, + & > .picture-in-picture-placeholder, + & > .more-from-author, + & > .status-card, + & > .hashtag-bar, + & > .content-warning, + & > .filter-warning, + & > .status__quote { margin-inline-start: var(--thread-margin); width: calc(100% - var(--thread-margin)); }