Change design of quote posts in web UI (#35584)

This commit is contained in:
Eugen Rochko 2025-07-30 17:53:42 +02:00 committed by GitHub
commit 92bf55afd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 210 additions and 109 deletions

View file

@ -138,6 +138,16 @@ class StatusContent extends PureComponent {
onCollapsedToggle(collapsed);
}
// Remove quote fallback link from the DOM so it doesn't
// mess with paragraph margins
if (!!status.get('quote')) {
const inlineQuote = node.querySelector('.quote-inline');
if (inlineQuote) {
inlineQuote.remove();
}
}
}
handleMouseEnter = ({ currentTarget }) => {