* refactor(room list): remove extra component button and `setMenuOpen` callback * fix(room list): replace js focus and hover handling by CSS to fix focus decoration Closes https://github.com/element-hq/element-web/issues/31365 * test(room list): update jest test * refactor(room list): remove irrelevant comment * test(room list): update screenshots
102 lines
3.1 KiB
Plaintext
102 lines
3.1 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 RoomListItemView has the following structure:
|
|
* button--------------------------------------------------|
|
|
* | <-12px-> container------------------------------------|
|
|
* | | room avatar <-8px-> content----------------|
|
|
* | | | room_name <- 20px ->|
|
|
* | | | --------------------| <-- border
|
|
* |-------------------------------------------------------|
|
|
*/
|
|
.mx_RoomListItemView {
|
|
/* Remove button default style */
|
|
background: unset;
|
|
border: none;
|
|
padding: 0;
|
|
text-align: unset;
|
|
|
|
cursor: pointer;
|
|
height: 48px;
|
|
width: 100%;
|
|
|
|
padding-left: var(--cpd-space-3x);
|
|
font: var(--cpd-font-body-md-regular);
|
|
|
|
/* Hide the menu by default */
|
|
.mx_RoomListItemView_menu {
|
|
display: none;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus-visible,
|
|
/* When the context menu is opened */
|
|
&[data-state="open"],
|
|
/* When the options and notifications menu are opened */
|
|
&:has(.mx_RoomListItemMenuView > button[data-state="open"]) {
|
|
background-color: var(--cpd-color-bg-action-secondary-hovered);
|
|
|
|
.mx_RoomListItemView_menu {
|
|
display: flex;
|
|
}
|
|
|
|
&.mx_RoomListItemView_has_menu {
|
|
/**
|
|
* The figma uses 16px padding (--cpd-space-4x) but due to https://github.com/element-hq/compound-web/issues/331
|
|
* the icon size of the menu is 18px instead of 20px with a different internal padding
|
|
* We need to use 18px to align the icon with the others icons
|
|
* 18px is not available in compound spacing
|
|
*/
|
|
.mx_RoomListItemView_content {
|
|
padding-right: 18px;
|
|
}
|
|
|
|
/* When the menu is visible, hide the notification decoration to avoid clutter */
|
|
.mx_RoomListItemView_notificationDecoration {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_RoomListItemView_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;
|
|
padding-right: var(--cpd-space-5x);
|
|
|
|
.mx_RoomListItemView_text {
|
|
min-width: 0;
|
|
}
|
|
|
|
.mx_RoomListItemView_roomName {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.mx_RoomListItemView_messagePreview {
|
|
font: var(--cpd-font-body-sm-regular);
|
|
color: var(--cpd-color-text-secondary);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_RoomListItemView_selected {
|
|
background-color: var(--cpd-color-bg-action-secondary-pressed);
|
|
}
|
|
|
|
.mx_RoomListItemView_bold .mx_RoomListItemView_roomName {
|
|
font: var(--cpd-font-body-md-semibold);
|
|
}
|