2019-11-20 23:18:28 +08:00
|
|
|
/*
|
2021-03-26 19:13:39 +08:00
|
|
|
Copyright 2019-2021 The Matrix.org Foundation C.I.C.
|
2019-11-20 23:18:28 +08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_ToastContainer {
|
|
|
|
position: absolute;
|
2023-04-18 19:38:41 +08:00
|
|
|
top: $spacing-4;
|
2019-11-20 23:18:28 +08:00
|
|
|
left: 70px;
|
|
|
|
z-index: 101;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 1fr 14px 6px;
|
|
|
|
|
|
|
|
&.mx_ToastContainer_stacked::before {
|
|
|
|
content: "";
|
|
|
|
margin: 0 4px;
|
|
|
|
grid-row: 2 / 4;
|
|
|
|
grid-column: 1;
|
2021-08-12 22:20:30 +08:00
|
|
|
background-color: $system;
|
2020-05-21 23:32:19 +08:00
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
|
2019-11-20 23:18:28 +08:00
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Toast_toast {
|
2021-08-12 22:20:30 +08:00
|
|
|
background-color: $system;
|
2019-11-20 23:18:28 +08:00
|
|
|
border-radius: 8px;
|
2023-04-18 19:38:41 +08:00
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
|
|
|
|
color: $primary-content;
|
|
|
|
column-gap: $spacing-8;
|
2019-11-20 23:18:28 +08:00
|
|
|
display: grid;
|
2023-04-18 19:38:41 +08:00
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 1 / 3;
|
|
|
|
grid-template-columns: 24px 1fr;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: $spacing-16;
|
2019-11-20 23:18:28 +08:00
|
|
|
|
|
|
|
&.mx_Toast_hasIcon {
|
2023-04-18 19:38:41 +08:00
|
|
|
.mx_Toast_icon {
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 1;
|
|
|
|
}
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
&::before,
|
|
|
|
&::after {
|
2019-11-20 23:18:28 +08:00
|
|
|
content: "";
|
2023-04-18 19:38:41 +08:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2019-11-20 23:18:28 +08:00
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 1;
|
|
|
|
mask-size: 100%;
|
2020-07-14 07:52:03 +08:00
|
|
|
mask-position: center;
|
2019-11-20 23:18:28 +08:00
|
|
|
mask-repeat: no-repeat;
|
2020-07-10 22:32:34 +08:00
|
|
|
background-size: 100%;
|
|
|
|
background-repeat: no-repeat;
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
|
|
|
|
2020-07-14 07:52:03 +08:00
|
|
|
&.mx_Toast_icon_verification_warning {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* white infill for the hollow svg mask */
|
2020-07-14 07:52:03 +08:00
|
|
|
&::before {
|
|
|
|
background-color: #ffffff;
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/e2e/normal.svg");
|
2021-06-23 23:10:47 +08:00
|
|
|
mask-size: 80%;
|
2020-07-14 07:52:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
mask-image: url("$(res)/img/e2e/warning.svg");
|
2022-12-20 10:07:28 +08:00
|
|
|
background-color: $e2e-warning-color;
|
2020-07-14 07:52:03 +08:00
|
|
|
}
|
2020-01-17 19:43:35 +08:00
|
|
|
}
|
|
|
|
|
2020-09-16 20:57:23 +08:00
|
|
|
&.mx_Toast_icon_secure_backup::after {
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/feather-customised/secure-backup.svg");
|
2021-08-12 17:27:12 +08:00
|
|
|
background-color: $primary-content;
|
2020-09-16 20:57:23 +08:00
|
|
|
}
|
|
|
|
|
2021-12-01 02:08:46 +08:00
|
|
|
&.mx_Toast_icon_labs::after {
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/flask.svg");
|
2021-12-01 02:08:46 +08:00
|
|
|
background-color: $secondary-content;
|
|
|
|
}
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
.mx_Toast_title,
|
|
|
|
.mx_Toast_body {
|
2019-11-20 23:18:28 +08:00
|
|
|
grid-column: 2;
|
|
|
|
}
|
|
|
|
}
|
2023-04-18 19:38:41 +08:00
|
|
|
|
2020-05-21 23:52:36 +08:00
|
|
|
&:not(.mx_Toast_hasIcon) {
|
|
|
|
padding-left: 12px;
|
|
|
|
|
|
|
|
.mx_Toast_title {
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-21 23:32:19 +08:00
|
|
|
.mx_Toast_title {
|
2022-04-15 04:35:52 +08:00
|
|
|
align-items: center;
|
2023-04-18 19:38:41 +08:00
|
|
|
box-sizing: border-box;
|
2022-04-15 04:35:52 +08:00
|
|
|
column-gap: 8px;
|
2023-04-18 19:38:41 +08:00
|
|
|
display: flex;
|
|
|
|
margin-bottom: $spacing-16;
|
2020-05-21 23:52:36 +08:00
|
|
|
width: 100%;
|
|
|
|
|
2020-05-21 23:32:19 +08:00
|
|
|
h2 {
|
2023-04-18 19:38:41 +08:00
|
|
|
color: $primary-content;
|
2020-05-21 23:32:19 +08:00
|
|
|
margin: 0;
|
2023-04-18 19:38:41 +08:00
|
|
|
font-size: $font-18px;
|
|
|
|
font-weight: $font-semi-bold;
|
2020-05-21 23:32:19 +08:00
|
|
|
}
|
|
|
|
|
2022-04-15 04:35:52 +08:00
|
|
|
.mx_Toast_title_countIndicator {
|
2020-05-21 23:32:19 +08:00
|
|
|
font-size: $font-12px;
|
2020-05-22 00:12:16 +08:00
|
|
|
line-height: $font-22px;
|
2021-09-04 00:21:09 +08:00
|
|
|
color: $secondary-content;
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-inline-start: auto; /* on the end side of the div */
|
2020-05-21 23:32:19 +08:00
|
|
|
}
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Toast_body {
|
|
|
|
grid-column: 1 / 3;
|
|
|
|
grid-row: 2;
|
2023-04-18 19:38:41 +08:00
|
|
|
position: relative;
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Toast_buttons {
|
2023-04-18 19:38:41 +08:00
|
|
|
column-gap: $spacing-8;
|
2019-11-20 23:18:28 +08:00
|
|
|
display: flex;
|
2022-04-15 04:35:52 +08:00
|
|
|
justify-content: flex-end;
|
2023-04-18 19:38:41 +08:00
|
|
|
margin-top: $spacing-32;
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Toast_description {
|
2023-04-18 19:38:41 +08:00
|
|
|
color: $primary-content;
|
|
|
|
font-size: $font-15px;
|
|
|
|
font-weight: $font-semi-bold;
|
|
|
|
max-width: 300px;
|
2020-05-21 23:32:19 +08:00
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
2020-01-29 23:00:01 +08:00
|
|
|
|
2021-03-26 19:13:39 +08:00
|
|
|
.mx_Toast_detail {
|
2023-04-18 19:38:41 +08:00
|
|
|
display: block;
|
|
|
|
font-weight: $font-normal;
|
|
|
|
margin-top: $spacing-4;
|
|
|
|
max-width: 300px;
|
2021-03-26 19:13:39 +08:00
|
|
|
}
|
|
|
|
|
2020-01-29 23:00:01 +08:00
|
|
|
.mx_Toast_deviceID {
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-10px;
|
2020-01-29 23:00:01 +08:00
|
|
|
}
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
|
|
|
}
|