mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
66 lines
1.5 KiB
Plaintext
66 lines
1.5 KiB
Plaintext
/*
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_VoiceBroadcastHeader {
|
|
align-items: flex-start;
|
|
display: flex;
|
|
gap: $spacing-8;
|
|
line-height: 20px;
|
|
margin-bottom: $spacing-16;
|
|
min-width: 0;
|
|
}
|
|
|
|
.mx_VoiceBroadcastHeader_content {
|
|
flex-grow: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.mx_VoiceBroadcastHeader_room_wrapper {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: 4px;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.mx_VoiceBroadcastHeader_room {
|
|
font-size: $font-12px;
|
|
font-weight: $font-semi-bold;
|
|
min-width: 0;
|
|
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;
|
|
|
|
.mx_Spinner {
|
|
flex: 0 0 14px;
|
|
padding: 1px;
|
|
}
|
|
|
|
span {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.mx_VoiceBroadcastHeader_mic--clickable {
|
|
cursor: pointer;
|
|
}
|