new room list: keep space name in one line in header (#29369)

* fix(new room list): keep space name in one line in header

* test(new room list): update tests
This commit is contained in:
Florian Duros
2025-02-28 09:34:06 +01:00
committed by GitHub
parent 1ad1387e05
commit 7db909a47d
4 changed files with 36 additions and 17 deletions

View File

@@ -9,9 +9,16 @@
height: 60px;
padding: 0 var(--cpd-space-3x);
h1 {
all: unset;
font: var(--cpd-font-heading-sm-semibold);
.mx_RoomListHeaderView_title {
min-width: 0;
h1 {
all: unset;
font: var(--cpd-font-heading-sm-semibold);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
button {