2021-09-22 20:59:54 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.Toast {
|
2021-10-07 21:45:38 +00:00
|
|
|
$border-radius-px: 8px;
|
|
|
|
|
2021-09-22 20:59:54 +00:00
|
|
|
@include font-body-2;
|
|
|
|
|
2023-06-13 16:40:48 +00:00
|
|
|
align-items: stretch;
|
2021-10-07 21:45:38 +00:00
|
|
|
border-radius: $border-radius-px;
|
2024-07-24 00:31:40 +00:00
|
|
|
box-shadow:
|
|
|
|
0px 0px 4px rgba(0, 0, 0, 0.05),
|
|
|
|
0px 4px 12px rgba(0, 0, 0, 0.3);
|
2021-10-06 21:00:51 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-09-29 20:23:06 +00:00
|
|
|
user-select: none;
|
2021-12-07 00:21:30 +00:00
|
|
|
overflow: hidden;
|
2024-01-29 20:09:54 +00:00
|
|
|
width: fit-content;
|
2023-06-13 16:40:48 +00:00
|
|
|
max-width: 280px;
|
|
|
|
background-color: $color-gray-75;
|
|
|
|
color: $color-gray-05;
|
2024-01-29 20:09:54 +00:00
|
|
|
z-index: $z-index-toast;
|
|
|
|
|
|
|
|
inset-inline-start: 20px;
|
|
|
|
text-align: start;
|
2021-09-22 20:59:54 +00:00
|
|
|
|
2023-08-29 22:45:10 +00:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
@include keyboard-mode {
|
|
|
|
box-shadow: inset 0px 0px 0px 2px $color-ultramarine;
|
|
|
|
}
|
2021-09-22 20:59:54 +00:00
|
|
|
}
|
2023-06-13 16:40:48 +00:00
|
|
|
|
2024-01-29 20:09:54 +00:00
|
|
|
.ToastManager--narrow-sidebar & {
|
2024-03-21 22:51:22 +00:00
|
|
|
width: max-content;
|
2021-09-22 20:59:54 +00:00
|
|
|
}
|
|
|
|
|
2024-01-29 20:09:54 +00:00
|
|
|
.ToastManager--narrow-sidebar.ToastManager--composition-area-visible & {
|
|
|
|
min-width: initial;
|
|
|
|
text-align: center;
|
2022-09-26 16:24:52 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 21:00:51 +00:00
|
|
|
&__content {
|
2023-06-13 16:40:48 +00:00
|
|
|
padding-block: 13px;
|
|
|
|
padding-inline: 16px;
|
2021-10-06 21:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
2023-06-13 16:40:48 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-10-06 21:00:51 +00:00
|
|
|
@include font-body-2-bold;
|
2021-09-22 20:59:54 +00:00
|
|
|
cursor: pointer;
|
2023-06-13 16:40:48 +00:00
|
|
|
padding-block: 13px;
|
|
|
|
padding-inline: 16px;
|
2021-12-07 00:21:30 +00:00
|
|
|
white-space: nowrap;
|
2023-08-24 21:09:23 +00:00
|
|
|
color: $color-ios-blue-tint;
|
2021-12-07 00:21:30 +00:00
|
|
|
|
2023-08-29 22:45:10 +00:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
@include keyboard-mode {
|
|
|
|
box-shadow: inset 0px 0px 0px 2px $color-ultramarine;
|
|
|
|
}
|
2021-12-07 00:21:30 +00:00
|
|
|
}
|
2021-09-22 20:59:54 +00:00
|
|
|
}
|
|
|
|
}
|