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