Signal-Desktop/stylesheets/components/Toast.scss

80 lines
1.5 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;
2021-10-06 21:00:51 +00:00
align-items: center;
2021-10-07 21:45:38 +00:00
border-radius: $border-radius-px;
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-22 20:59:54 +00:00
position: absolute;
text-align: center;
2021-09-29 20:23:06 +00:00
user-select: none;
overflow: hidden;
2021-12-01 23:13:09 +00:00
z-index: $z-index-toast;
2022-09-27 00:09:50 +00:00
bottom: 62px;
left: 50%;
transform: translate(-50%, 0);
2021-09-22 20:59:54 +00:00
@include light-theme {
2021-10-06 21:00:51 +00:00
background-color: $color-gray-80;
2021-09-22 20:59:54 +00:00
color: $color-white;
}
@include dark-theme {
2021-10-06 21:00:51 +00:00
background-color: $color-gray-75;
color: $color-gray-05;
2021-09-22 20:59:54 +00:00
}
&--align-center {
bottom: 62px;
left: 50%;
transform: translate(-50%, 0);
}
&--align-left {
left: 20px;
bottom: 18px;
}
2021-10-06 21:00:51 +00:00
&__content {
padding: 8px 12px;
}
&__button {
@include font-body-2-bold;
2021-09-22 20:59:54 +00:00
cursor: pointer;
2021-10-06 21:00:51 +00:00
padding: 8px 12px;
white-space: nowrap;
2021-10-06 21:00:51 +00:00
@include light-theme {
border-left: 1px solid $color-gray-65;
}
@include dark-theme {
border-left: 1px solid $color-gray-60;
}
outline: none;
2021-10-06 21:00:51 +00:00
&:hover {
@include light-theme {
background-color: $color-gray-65;
}
@include dark-theme {
background-color: $color-gray-60;
}
}
&:focus {
@include keyboard-mode {
background-color: $color-gray-65;
}
@include dark-keyboard-mode {
background-color: $color-gray-60;
}
}
2021-09-22 20:59:54 +00:00
}
}