2023-01-03 16:58:38 +00:00
|
|
|
/*
|
|
|
|
|
Copyright 2022 New Vector Ltd
|
|
|
|
|
|
|
|
|
|
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-04-22 18:05:48 -07:00
|
|
|
.pttCallView {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2022-04-27 16:47:23 -07:00
|
|
|
justify-content: center;
|
2022-04-22 18:05:48 -07:00
|
|
|
overflow: hidden;
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-12 12:07:04 +01:00
|
|
|
@media (hover: none) {
|
|
|
|
|
.pttCallView {
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-22 18:05:48 -07:00
|
|
|
.center {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.participants {
|
2022-04-27 16:47:23 -07:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin: 20px;
|
2022-07-07 14:30:28 +01:00
|
|
|
text-align: center;
|
2022-04-22 18:05:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.participants > p {
|
2022-06-01 11:48:17 -04:00
|
|
|
color: var(--secondary-content);
|
2022-04-22 18:05:48 -07:00
|
|
|
margin-bottom: 8px;
|
2022-04-27 16:47:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.facepile {
|
|
|
|
|
align-self: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.talkingInfo {
|
|
|
|
|
display: flex;
|
2022-07-05 15:41:57 -04:00
|
|
|
flex-shrink: 0;
|
2022-04-27 16:47:23 -07:00
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2022-04-27 17:19:58 -07:00
|
|
|
margin-bottom: 20px;
|
2022-04-28 17:44:50 -07:00
|
|
|
height: 88px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.speakerIcon {
|
|
|
|
|
margin-right: 8px;
|
2022-04-27 16:47:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pttButtonContainer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2022-04-27 17:19:58 -07:00
|
|
|
flex: 1;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actionTip {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
margin-bottom: 20px;
|
2022-12-09 14:25:02 -05:00
|
|
|
font-size: var(--font-size-subtitle);
|
2022-04-27 16:47:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 64px;
|
2022-04-27 17:19:58 -07:00
|
|
|
margin-bottom: 20px;
|
2022-04-27 16:47:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer > * {
|
|
|
|
|
margin-right: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer > :last-child {
|
|
|
|
|
margin-right: 0px;
|
2022-04-27 17:19:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 800px) {
|
|
|
|
|
.participants {
|
|
|
|
|
margin-bottom: 67px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.talkingInfo {
|
|
|
|
|
margin-bottom: 38px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.center {
|
|
|
|
|
margin-top: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actionTip {
|
|
|
|
|
margin-top: 42px;
|
|
|
|
|
margin-bottom: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pttButtonContainer {
|
2022-04-28 11:13:01 -07:00
|
|
|
flex: 0;
|
2022-04-27 17:19:58 -07:00
|
|
|
margin-bottom: 0;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
flex: auto;
|
|
|
|
|
order: 4;
|
|
|
|
|
}
|
2022-05-04 11:24:25 +01:00
|
|
|
}
|