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

Prevent overflow of grid items on a bubble with UTD generally #8697

Merged
merged 1 commit into from
May 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion res/css/views/rooms/_EventBubbleTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,13 @@ limitations under the License.
"shield link" auto
/ auto 1fr;

.mx_UnknownBody,
.mx_EventTile_keyRequestInfo,
.mx_ReplyChain_wrapper,
.mx_ViewSourceEvent {
min-width: 0; // Prevent a grid blowout
}

.mx_EventTile_e2eIcon {
grid-area: shield;
}
Expand All @@ -510,7 +517,6 @@ limitations under the License.

.mx_ReplyChain_wrapper {
grid-area: reply;
min-width: 0; // Prevent a grid blowout due to nowrap displayName
}
}

Expand Down