Pinned message list: prevent sender name to overflow pinned event tile (#12947)

* Prevent sender name to overflow pinned event tile

* Add tooltip to display the sender name
This commit is contained in:
Florian Duros 2024-09-04 11:45:18 +02:00 committed by GitHub
parent ab1e28bfea
commit 1e3320da1e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 14 deletions

View file

@ -26,6 +26,8 @@ limitations under the License.
/* Remove avatar width and space between the avatar and the wrapper */
/* We need it to make the location fit */
width: calc(100% - var(--cpd-space-4x) - 32px);
/* Prevent a long sender name to overflow the tile */
overflow: hidden;
.mx_PinnedEventTile_top {
display: flex;
@ -37,6 +39,7 @@ limitations under the License.
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font: var(--cpd-font-body-md-semibold);
}
}