2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-08-01 15:32:53 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 07:23:35 +08:00
|
|
|
*/
|
|
|
|
|
2023-08-01 21:47:09 +08:00
|
|
|
.mx_RoomHeader {
|
2023-08-02 18:54:06 +08:00
|
|
|
height: 64px;
|
2023-10-20 21:30:37 +08:00
|
|
|
box-sizing: border-box;
|
2024-09-26 18:14:53 +08:00
|
|
|
padding: 0 var(--cpd-space-3x) 0 calc(var(--cpd-space-3x) + var(--cpd-space-1-5x));
|
2023-07-13 01:46:49 +08:00
|
|
|
border-bottom: 1px solid $separator;
|
2023-08-02 18:54:06 +08:00
|
|
|
background-color: $background;
|
2024-06-26 22:17:12 +08:00
|
|
|
transition: all 0.2s ease;
|
2023-10-11 22:43:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader:hover {
|
|
|
|
background-color: $header-panel-bg-hover;
|
2023-08-23 22:13:40 +08:00
|
|
|
}
|
2023-08-02 18:54:06 +08:00
|
|
|
|
2023-11-29 05:15:21 +08:00
|
|
|
.mx_RoomHeader_infoWrapper {
|
2024-01-03 02:56:39 +08:00
|
|
|
/* unset button styles */
|
2023-11-29 05:15:21 +08:00
|
|
|
background: unset;
|
|
|
|
border: unset;
|
2023-08-31 01:55:02 +08:00
|
|
|
flex: 1;
|
2023-11-29 05:15:21 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
cursor: pointer;
|
|
|
|
gap: var(--cpd-space-3x);
|
|
|
|
text-align: left;
|
2024-09-26 18:14:53 +08:00
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
2023-11-29 05:15:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_info {
|
2023-10-11 22:43:01 +08:00
|
|
|
/* We want the spacing to be 64px, 13x = 52px but we have a flex gap of
|
|
|
|
12px set on the flex container, which sums up to 64 */
|
|
|
|
padding-right: var(--cpd-space-13x);
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_truncated {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: break-all;
|
|
|
|
text-overflow: ellipsis;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2023-09-01 17:45:50 +08:00
|
|
|
.mx_RoomHeader_heading {
|
|
|
|
display: flex;
|
|
|
|
gap: var(--cpd-space-1x);
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2023-10-11 22:43:01 +08:00
|
|
|
.mx_RoomHeader_icon {
|
|
|
|
flex-shrink: 0;
|
2020-01-30 18:18:14 +08:00
|
|
|
}
|
2023-08-31 01:55:02 +08:00
|
|
|
|
|
|
|
.mx_RoomHeader .mx_FacePile {
|
|
|
|
color: $secondary-content;
|
2023-10-11 22:43:01 +08:00
|
|
|
background: $background;
|
2023-08-31 01:55:02 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: var(--cpd-space-2x);
|
|
|
|
border-radius: 9999px;
|
|
|
|
padding: var(--cpd-space-1-5x);
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
|
2023-11-14 14:48:26 +08:00
|
|
|
/* RoomAvatar doesn't pass classes down to avatar
|
|
|
|
So set style here
|
|
|
|
using div because compound classes are not stable */
|
|
|
|
> div {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2023-08-31 01:55:02 +08:00
|
|
|
&:hover {
|
|
|
|
color: $primary-content;
|
|
|
|
background: var(--cpd-color-bg-subtle-primary);
|
|
|
|
}
|
|
|
|
}
|
2023-11-14 14:48:26 +08:00
|
|
|
|
|
|
|
.mx_RoomHeader .mx_BaseAvatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|