Unbreak IRC layout when thread summary is displayed (#7066)

pull/21833/head
Germain 2021-11-03 08:26:41 +00:00 committed by GitHub
parent 74376f989e
commit 4b66d4a891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

View File

@ -41,6 +41,11 @@ $irc-line-height: $font-18px;
margin-right: $right-padding;
}
.mx_ThreadInfo {
margin-right: 0;
margin-left: 0;
}
> .mx_EventTile_msgOption {
order: 5;
flex-shrink: 0;

View File

@ -1369,10 +1369,15 @@ export default class EventTile extends React.Component<IProps, IState> {
/>
{ keyRequestInfo }
{ actionBar }
{ this.props.layout === Layout.IRC && (reactionsRow) }
</div>
{ this.props.layout === Layout.IRC && <>
{ reactionsRow }
{ this.renderThreadInfo() }
{ this.props.layout !== Layout.IRC && (reactionsRow) }
</> }
</div>
{ this.props.layout !== Layout.IRC && <>
{ reactionsRow }
{ this.renderThreadInfo() }
</> }
{ msgOption }
</>)
);