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