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

Commit

Permalink
Fix event text overflow on bubble message layout (#8391)
Browse files Browse the repository at this point in the history
Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
  • Loading branch information
luixxiul authored Apr 28, 2022
1 parent 7208953 commit 7a0b307
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion res/css/views/rooms/_EventBubbleTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,17 @@ limitations under the License.
padding-top: 0;
}

.mx_EventTile {
&.mx_EventTile_info {
.mx_EventTile_line {
// Avoid overflow of event info by cancelling width settings
width: 100%;
min-width: 0;
max-width: 100%;
}
}
}

&::after {
content: "";
clear: both;
Expand All @@ -585,7 +596,7 @@ limitations under the License.
margin-right: 0;

.mx_MessageActionBar {
right: 127px; // align with that of right-column bubbles
right: 48px; // align with that of right-column bubbles
}

.mx_ReadReceiptGroup {
Expand Down

0 comments on commit 7a0b307

Please sign in to comment.