2019-02-01 20:39:25 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-02-01 20:39:25 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-02-01 20:39:25 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_E2EIcon {
|
2019-11-22 01:13:01 +08:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2019-02-01 20:39:25 +08:00
|
|
|
margin: 0 9px;
|
2019-11-12 23:25:38 +08:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-07-14 07:52:03 +08:00
|
|
|
.mx_E2EIcon_warning,
|
|
|
|
.mx_E2EIcon_normal,
|
|
|
|
.mx_E2EIcon_verified {
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2023-05-09 18:02:12 +08:00
|
|
|
inset: 0;
|
2020-07-14 07:52:03 +08:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* transparent-looking border surrounding the shield for when overlain over avatars */
|
2020-07-14 07:52:03 +08:00
|
|
|
.mx_E2EIcon_bordered {
|
|
|
|
mask-image: url("$(res)/img/e2e/normal.svg");
|
|
|
|
background-color: $header-panel-bg-color;
|
2023-10-03 22:49:09 +08:00
|
|
|
mask-size: 100%;
|
2020-07-14 07:52:03 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* shrink the actual badge */
|
2020-07-14 07:52:03 +08:00
|
|
|
&::after {
|
|
|
|
mask-size: 75%;
|
|
|
|
}
|
2022-07-27 21:39:29 +08:00
|
|
|
/* shrink the infill of the badge */
|
2020-07-14 07:52:03 +08:00
|
|
|
&::before {
|
2021-06-23 23:10:47 +08:00
|
|
|
mask-size: 60%;
|
2024-03-18 23:47:55 +08:00
|
|
|
background: var(--cpd-color-bg-canvas-default);
|
2020-07-14 07:52:03 +08:00
|
|
|
}
|
2019-11-12 23:25:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_E2EIcon_warning::after {
|
2020-07-14 07:52:03 +08:00
|
|
|
mask-image: url("$(res)/img/e2e/warning.svg");
|
2022-12-20 10:07:28 +08:00
|
|
|
background-color: $e2e-warning-color;
|
2019-02-01 20:39:25 +08:00
|
|
|
}
|
2019-12-14 01:57:26 +08:00
|
|
|
|
|
|
|
.mx_E2EIcon_normal::after {
|
2020-07-14 07:52:03 +08:00
|
|
|
mask-image: url("$(res)/img/e2e/normal.svg");
|
2024-03-18 23:47:55 +08:00
|
|
|
background-color: var(--cpd-color-icon-tertiary);
|
2019-12-14 01:57:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_E2EIcon_verified::after {
|
2020-07-14 07:52:03 +08:00
|
|
|
mask-image: url("$(res)/img/e2e/verified.svg");
|
2022-12-20 10:07:28 +08:00
|
|
|
background-color: $e2e-verified-color;
|
2019-12-14 01:57:26 +08:00
|
|
|
}
|