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;
|
|
|
|
top: 0;
|
|
|
|
left: 70px;
|
|
|
|
z-index: 101;
|
|
|
|
padding: 4px;
|
|
|
|
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 {
|
|
|
|
grid-row: 1 / 3;
|
|
|
|
grid-column: 1;
|
2021-08-12 22:20:30 +08:00
|
|
|
background-color: $system;
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
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;
|
|
|
|
overflow: hidden;
|
|
|
|
display: grid;
|
2020-05-22 00:47:35 +08:00
|
|
|
grid-template-columns: 22px 1fr;
|
|
|
|
column-gap: 8px;
|
2019-11-20 23:18:28 +08:00
|
|
|
row-gap: 4px;
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
&.mx_Toast_hasIcon {
|
2020-07-14 07:52:03 +08:00
|
|
|
&::before, &::after {
|
2019-11-20 23:18:28 +08:00
|
|
|
content: "";
|
2020-01-21 23:30:01 +08:00
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_Toast_icon_verification::after {
|
|
|
|
mask-image: url("$(res)/img/e2e/normal.svg");
|
2021-08-12 17:27:12 +08:00
|
|
|
background-color: $primary-content;
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
|
|
|
|
2020-07-14 07:52:03 +08:00
|
|
|
&.mx_Toast_icon_verification_warning {
|
|
|
|
// white infill for the hollow svg mask
|
|
|
|
&::before {
|
|
|
|
background-color: #ffffff;
|
|
|
|
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");
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $alert;
|
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 {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-05-21 23:52:36 +08:00
|
|
|
.mx_Toast_title, .mx_Toast_body {
|
2019-11-20 23:18:28 +08:00
|
|
|
grid-column: 2;
|
|
|
|
}
|
|
|
|
}
|
2020-05-21 23:52:36 +08:00
|
|
|
&:not(.mx_Toast_hasIcon) {
|
|
|
|
padding-left: 12px;
|
|
|
|
|
|
|
|
.mx_Toast_title {
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Toast_title,
|
|
|
|
.mx_Toast_description {
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
2019-11-20 23:18:28 +08:00
|
|
|
|
2020-05-21 23:32:19 +08:00
|
|
|
.mx_Toast_title {
|
2020-05-21 23:52:36 +08:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
2020-05-21 23:32:19 +08:00
|
|
|
h2 {
|
|
|
|
grid-column: 1 / 3;
|
|
|
|
grid-row: 1;
|
|
|
|
margin: 0;
|
|
|
|
font-size: $font-15px;
|
|
|
|
font-weight: 600;
|
|
|
|
display: inline;
|
|
|
|
width: auto;
|
2020-05-22 00:47:35 +08:00
|
|
|
vertical-align: middle;
|
2020-05-21 23:32:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
2020-05-22 00:12:16 +08:00
|
|
|
padding-left: 8px;
|
2020-05-21 23:32:19 +08:00
|
|
|
float: right;
|
|
|
|
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;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Toast_buttons {
|
2020-05-21 23:32:19 +08:00
|
|
|
float: right;
|
2019-11-20 23:18:28 +08:00
|
|
|
display: flex;
|
2020-05-21 23:32:19 +08:00
|
|
|
|
2021-06-21 21:16:37 +08:00
|
|
|
.mx_AccessibleButton {
|
2020-05-21 23:32:19 +08:00
|
|
|
min-width: 96px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2021-06-29 18:59:13 +08:00
|
|
|
|
|
|
|
.mx_AccessibleButton + .mx_AccessibleButton {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2019-11-20 23:18:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Toast_description {
|
2020-04-30 00:28:45 +08:00
|
|
|
max-width: 272px;
|
2020-04-30 00:38:32 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2019-11-20 23:18:28 +08:00
|
|
|
margin: 4px 0 11px 0;
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-12px;
|
2020-05-21 23:32:19 +08:00
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_link {
|
|
|
|
font-size: inherit;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2021-08-12 17:30:35 +08:00
|
|
|
color: $secondary-content;
|
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
|
|
|
}
|
|
|
|
}
|