2022-10-12 22:00:37 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-12 22:00:37 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
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.
|
2022-10-12 22:00:37 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_VoiceBroadcastHeader {
|
|
|
|
align-items: flex-start;
|
|
|
|
display: flex;
|
|
|
|
gap: $spacing-8;
|
|
|
|
line-height: 20px;
|
2022-10-14 16:09:38 +08:00
|
|
|
margin-bottom: $spacing-16;
|
2022-12-15 19:43:01 +08:00
|
|
|
min-width: 0;
|
2022-10-12 22:00:37 +08:00
|
|
|
}
|
|
|
|
|
2022-10-18 00:13:06 +08:00
|
|
|
.mx_VoiceBroadcastHeader_content {
|
|
|
|
flex-grow: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
2022-12-15 19:43:01 +08:00
|
|
|
.mx_VoiceBroadcastHeader_room_wrapper {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
gap: 4px;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2022-10-12 22:00:37 +08:00
|
|
|
.mx_VoiceBroadcastHeader_room {
|
|
|
|
font-size: $font-12px;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2022-12-15 19:43:01 +08:00
|
|
|
min-width: 0;
|
2022-10-12 22:00:37 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_VoiceBroadcastHeader_line {
|
|
|
|
align-items: center;
|
|
|
|
color: $secondary-content;
|
|
|
|
font-size: $font-12px;
|
|
|
|
display: flex;
|
|
|
|
gap: $spacing-4;
|
2022-10-18 00:13:06 +08:00
|
|
|
|
2022-11-30 18:43:58 +08:00
|
|
|
.mx_Spinner {
|
|
|
|
flex: 0 0 14px;
|
|
|
|
padding: 1px;
|
2022-10-18 00:13:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-10-12 22:00:37 +08:00
|
|
|
}
|
2022-11-15 17:02:40 +08:00
|
|
|
|
|
|
|
.mx_VoiceBroadcastHeader_mic--clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|