* chore: make the room list panel a flexbox * feat(new room list): add `RoomListCell` component * feat(new room list): add virtualized `RoomList` component * feat(new room list): add `RoomListView` component * feat(new room list): use `RoomListView` in `RoomListPanel` * test(new room list): add test for room cell * test(new room list): update room list panel tests * test(new room list): add test to virtualized room list * test(e2e): add room list tests * test(e2e): update room panel tests
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
/*
|
|
* Copyright 2025 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
/**
|
|
* The RoomCell has the following structure:
|
|
* button----------------------------------------|
|
|
* | <-12px-> container--------------------------|
|
|
* | | room avatar <-12px-> content-----|
|
|
* | | | room_name |
|
|
* | | | ----------| <-- border
|
|
* |---------------------------------------------|
|
|
*/
|
|
.mx_RoomListCell {
|
|
all: unset;
|
|
|
|
&:hover {
|
|
background-color: var(--cpd-color-bg-action-secondary-hovered);
|
|
}
|
|
|
|
.mx_RoomListCell_container {
|
|
padding-left: var(--cpd-space-3x);
|
|
font: var(--cpd-font-body-md-regular);
|
|
height: 100%;
|
|
|
|
.mx_RoomListCell_content {
|
|
height: 100%;
|
|
flex: 1;
|
|
/* The border is only under the room name and the future hover menu */
|
|
border-bottom: var(--cpd-border-width-0-5) solid var(--cpd-color-bg-subtle-secondary);
|
|
box-sizing: border-box;
|
|
min-width: 0;
|
|
|
|
span {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
}
|