2018-04-12 00:23:35 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-01-31 15:28:58 +00:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2018-04-12 00:23:35 +01:00
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 00:23:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.mx_RightPanel {
|
2018-10-11 15:42:45 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
|
flex: 0 0 auto;
|
2018-04-12 00:23:35 +01:00
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2023-10-20 14:30:37 +01:00
|
|
|
border-left: 1px solid $separator;
|
2020-07-16 02:08:24 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
height: 100%;
|
2021-06-01 11:21:59 +01:00
|
|
|
contain: strict;
|
2023-11-14 19:48:26 +13:00
|
|
|
background-color: var(--cpd-color-bg-canvas-default);
|
2020-07-13 22:13:29 +01:00
|
|
|
|
|
|
|
|
.mx_RoomView_MessageList {
|
2022-07-27 14:39:29 +01:00
|
|
|
padding: 14px 18px; /* top and bottom is 4px smaller to balance with the padding set above */
|
2020-07-13 22:13:29 +01:00
|
|
|
}
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RightPanel .mx_MemberList,
|
2023-05-08 02:52:15 +00:00
|
|
|
.mx_RightPanel .mx_MemberInfo {
|
2018-04-12 00:23:35 +01:00
|
|
|
order: 2;
|
|
|
|
|
flex: 1 1 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RightPanel .mx_RoomView_messagePanelSpinner {
|
|
|
|
|
order: 2;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|