2022-10-14 20:12:26 +02:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2022-10-26 13:45:39 +02:00
|
|
|
.mx_VoiceBroadcastBody {
|
|
|
|
background-color: $quinary-content;
|
2022-10-14 20:12:26 +02:00
|
|
|
border-radius: 8px;
|
2022-10-31 18:35:02 +01:00
|
|
|
color: $secondary-content;
|
2022-10-14 20:12:26 +02:00
|
|
|
display: inline-block;
|
2022-10-31 18:35:02 +01:00
|
|
|
font-size: $font-12px;
|
2022-10-14 20:12:26 +02:00
|
|
|
padding: $spacing-12;
|
2022-12-15 12:43:01 +01:00
|
|
|
width: 271px;
|
2022-11-30 08:47:29 +01:00
|
|
|
|
|
|
|
.mx_Clock {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
2022-10-14 20:12:26 +02:00
|
|
|
}
|
|
|
|
|
2022-10-26 13:45:39 +02:00
|
|
|
.mx_VoiceBroadcastBody--pip {
|
|
|
|
background-color: $system;
|
|
|
|
box-shadow: 0 2px 8px 0 #0000004a;
|
|
|
|
}
|
|
|
|
|
2022-12-15 12:43:01 +01:00
|
|
|
.mx_VoiceBroadcastBody--small {
|
|
|
|
display: flex;
|
|
|
|
gap: $spacing-8;
|
|
|
|
width: 192px;
|
|
|
|
|
|
|
|
.mx_VoiceBroadcastHeader {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_VoiceBroadcastControl {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_LiveBadge {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-26 13:45:39 +02:00
|
|
|
.mx_VoiceBroadcastBody_divider {
|
2022-10-14 20:12:26 +02:00
|
|
|
background-color: $quinary-content;
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
margin: $spacing-12 0;
|
|
|
|
}
|
|
|
|
|
2022-10-26 13:45:39 +02:00
|
|
|
.mx_VoiceBroadcastBody_controls {
|
2022-11-21 08:47:09 +01:00
|
|
|
align-items: center;
|
2022-10-14 20:12:26 +02:00
|
|
|
display: flex;
|
2022-11-21 08:47:09 +01:00
|
|
|
gap: $spacing-32;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: $spacing-8;
|
2022-10-14 20:12:26 +02:00
|
|
|
}
|
2022-10-31 18:35:02 +01:00
|
|
|
|
|
|
|
.mx_VoiceBroadcastBody_timerow {
|
|
|
|
display: flex;
|
2022-11-30 08:47:29 +01:00
|
|
|
justify-content: space-between;
|
2022-10-31 18:35:02 +01:00
|
|
|
}
|
2022-11-10 09:38:48 +01:00
|
|
|
|
|
|
|
.mx_AccessibleButton.mx_VoiceBroadcastBody_blockButton {
|
|
|
|
display: flex;
|
|
|
|
gap: $spacing-8;
|
|
|
|
}
|
2022-12-15 12:43:01 +01:00
|
|
|
|
|
|
|
.mx_VoiceBroadcastBody__small-close {
|
|
|
|
right: 8px;
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
}
|