Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 93ae5c2

Browse files
authored
Merge pull request #6464 from matrix-org/gsouquet/fix-18172
Fix reactions row pushing content on IRC layout
2 parents 869a5fb + 3ce6fcc commit 93ae5c2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

res/css/views/rooms/_IRCLayout.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@ $irc-line-height: $font-18px;
116116
.mx_EditMessageComposer_buttons {
117117
position: relative;
118118
}
119+
120+
.mx_ReactionsRow {
121+
padding-left: 0;
122+
padding-right: 0;
123+
}
119124
}
120125

121126
.mx_EventTile_emote {

src/components/views/rooms/EventTile.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1165,8 +1165,9 @@ export default class EventTile extends React.Component<IProps, IState> {
11651165
/>
11661166
{ keyRequestInfo }
11671167
{ actionBar }
1168+
{ this.props.layout === Layout.IRC && (reactionsRow) }
11681169
</div>
1169-
{ reactionsRow }
1170+
{ this.props.layout !== Layout.IRC && (reactionsRow) }
11701171
{ msgOption }
11711172
</>)
11721173
);

0 commit comments

Comments
 (0)