signal-desktop/stylesheets/components/Toast.scss

67 lines
1.3 KiB
SCSS
Raw Normal View History

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;
overflow: hidden;
width: fit-content;
2023-06-13 16:40:48 +00:00
max-width: 280px;
background-color: $color-gray-75;
color: $color-gray-05;
z-index: $z-index-toast;
inset-inline-start: 20px;
text-align: start;
2021-09-22 20:59:54 +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
.ToastManager--narrow-sidebar & {
2024-03-21 22:51:22 +00:00
width: max-content;
2021-09-22 20:59:54 +00:00
}
.ToastManager--narrow-sidebar.ToastManager--composition-area-visible & {
min-width: initial;
text-align: center;
}
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;
white-space: nowrap;
color: $color-ios-blue-tint;
&:focus {
outline: none;
@include keyboard-mode {
box-shadow: inset 0px 0px 0px 2px $color-ultramarine;
}
}
2021-09-22 20:59:54 +00:00
}
}