2023-12-06 21:52:29 +00:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.CallingRaisedHandsList {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-block-end: auto;
|
2023-12-08 20:15:18 +00:00
|
|
|
overflow: auto;
|
2023-12-06 21:52:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__width-container {
|
2023-12-08 20:15:18 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-12-06 21:52:29 +00:00
|
|
|
width: 320px;
|
|
|
|
height: auto;
|
2023-12-08 20:15:18 +00:00
|
|
|
padding-block: 1px;
|
|
|
|
padding-inline: 1px;
|
|
|
|
// This should be above .CallingRaisedHandsList__Button
|
2024-03-22 19:30:30 +00:00
|
|
|
margin-block-end: 72px;
|
2023-12-06 21:52:29 +00:00
|
|
|
margin-inline-start: 8px;
|
2023-12-08 20:15:18 +00:00
|
|
|
overflow: hidden;
|
2023-12-06 21:52:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__overlay {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__overlay-container {
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__Overlay {
|
|
|
|
align-items: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__Button {
|
|
|
|
@include button-reset;
|
|
|
|
position: absolute;
|
|
|
|
inset-inline-start: 16px;
|
2024-03-22 19:30:30 +00:00
|
|
|
inset-block-end: 16px;
|
2023-12-06 21:52:29 +00:00
|
|
|
display: flex;
|
|
|
|
padding-block: 14px;
|
|
|
|
padding-inline: 12px;
|
2024-03-22 19:30:30 +00:00
|
|
|
background: $color-white;
|
2023-12-06 21:52:29 +00:00
|
|
|
border-radius: 24px;
|
2024-03-22 19:30:30 +00:00
|
|
|
color: $color-black;
|
2023-12-06 21:52:29 +00:00
|
|
|
font-size: 14px;
|
|
|
|
z-index: $z-index-above-above-base;
|
|
|
|
|
|
|
|
@include keyboard-mode {
|
|
|
|
&:focus {
|
|
|
|
outline: 2px solid $color-ultramarine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__ButtonIcon {
|
|
|
|
display: inline-block;
|
|
|
|
$icon-size: 20px;
|
|
|
|
width: $icon-size;
|
|
|
|
height: $icon-size;
|
|
|
|
margin-inline-end: 4px;
|
|
|
|
content: '';
|
|
|
|
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/raise_hand/raise_hand-light.svg',
|
2024-03-22 19:30:30 +00:00
|
|
|
$color-black
|
2023-12-06 21:52:29 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__NameHandIcon {
|
|
|
|
display: inline-block;
|
|
|
|
$icon-size: 16px;
|
|
|
|
width: $icon-size;
|
|
|
|
height: $icon-size;
|
|
|
|
content: '';
|
|
|
|
|
|
|
|
@include color-svg(
|
|
|
|
'../images/icons/v3/raise_hand/raise_hand-light.svg',
|
|
|
|
$color-gray-15
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
.CallingRaisedHandsList__LowerMyHandLink {
|
|
|
|
@include button-reset;
|
2024-01-17 17:47:45 +00:00
|
|
|
display: flex;
|
|
|
|
margin-inline-end: 16px;
|
2023-12-06 21:52:29 +00:00
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $color-ultramarine-pastel;
|
|
|
|
|
|
|
|
@include keyboard-mode {
|
|
|
|
&:focus {
|
|
|
|
outline: 2px solid $color-ultramarine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|