mirror of
https://github.com/vector-im/element-web.git
synced 2026-01-04 08:01:32 +01:00
* Add a separator between joined and invited members * Fix user label in tile having wrong color * Changes to member tiles - ThreePidInviteTile now contains an user label showing "(Invited)" and an email icon. - RoomMemberTile now includes an icon similar to above. - Refactors a bunch of code to make this change sensible. * Remove redundant css code * Fix tests * Update src/components/viewmodels/memberlist/MemberListViewModel.tsx Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> * Update year in license * Fix lint error --------- Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
24 lines
508 B
Plaintext
24 lines
508 B
Plaintext
/*
|
|
Copyright 2024 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.
|
|
*/
|
|
|
|
.mx_MemberListView {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
|
|
.mx_MemberListView_container {
|
|
height: 100%;
|
|
}
|
|
|
|
.mx_MemberListView_separator {
|
|
margin: 0;
|
|
border: none;
|
|
border-top: 2px solid var(--cpd-color-bg-subtle-primary);
|
|
}
|
|
}
|