Group calls: mute in the lobby if joining a large call
This commit is contained in:
parent
09af7eeece
commit
f8bbf5c998
12 changed files with 499 additions and 279 deletions
24
stylesheets/components/CallingToast.scss
Normal file
24
stylesheets/components/CallingToast.scss
Normal file
|
@ -0,0 +1,24 @@
|
|||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
.CallingToast {
|
||||
@include button-reset();
|
||||
@include font-body-1-bold;
|
||||
background-color: $color-gray-75;
|
||||
border-radius: 8px;
|
||||
color: $color-white;
|
||||
max-width: 80%;
|
||||
opacity: 1;
|
||||
padding: 12px;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
top: 12px;
|
||||
transition: top 200ms ease-out, opacity 200ms ease-out;
|
||||
user-select: none;
|
||||
z-index: $z-index-above-above-base;
|
||||
|
||||
&--hidden {
|
||||
opacity: 0;
|
||||
top: 5px;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue