2020-07-01 06:24:46 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-07-01 06:24:46 +08:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
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.
|
2020-07-01 06:24:46 +08:00
|
|
|
*/
|
|
|
|
|
2021-03-09 01:48:08 +08:00
|
|
|
.mx_DecoratedRoomAvatar,
|
|
|
|
.mx_ExtraTile {
|
2020-07-01 06:24:46 +08:00
|
|
|
position: relative;
|
2021-06-01 18:21:59 +08:00
|
|
|
contain: content;
|
2023-08-25 21:52:20 +08:00
|
|
|
line-height: 0;
|
2020-07-01 06:24:46 +08:00
|
|
|
|
2020-08-14 17:20:59 +08:00
|
|
|
&.mx_DecoratedRoomAvatar_cutout .mx_BaseAvatar {
|
|
|
|
mask-image: url("$(res)/img/element-icons/roomlist/decorated-avatar-mask.svg");
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DecoratedRoomAvatar_icon {
|
2020-07-01 06:24:46 +08:00
|
|
|
position: absolute;
|
2022-07-27 21:39:29 +08:00
|
|
|
/* the following percentage based sizings are to match the scalable svg mask for the cutout */
|
2024-01-03 02:56:39 +08:00
|
|
|
bottom: 6.25%; /* 2px for a 32x32 avatar */
|
2023-08-25 21:52:20 +08:00
|
|
|
right: 6.25%;
|
2024-01-03 02:56:39 +08:00
|
|
|
width: 25%; /* 8px for a 32x32 avatar */
|
2022-02-02 17:22:27 +08:00
|
|
|
height: 25%;
|
2020-08-14 17:20:59 +08:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DecoratedRoomAvatar_icon::before {
|
|
|
|
content: "";
|
2022-02-02 17:22:27 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-12-10 19:50:01 +08:00
|
|
|
right: 0;
|
2020-08-14 17:20:59 +08:00
|
|
|
position: absolute;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DecoratedRoomAvatar_icon_globe::before {
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
2021-08-12 17:30:35 +08:00
|
|
|
background: $secondary-content;
|
2020-08-14 17:20:59 +08:00
|
|
|
mask-image: url("$(res)/img/globe.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DecoratedRoomAvatar_icon_offline::before {
|
|
|
|
background-color: $presence-offline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DecoratedRoomAvatar_icon_online::before {
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
2020-08-14 17:20:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DecoratedRoomAvatar_icon_away::before {
|
|
|
|
background-color: $presence-away;
|
2020-07-01 06:24:46 +08:00
|
|
|
}
|
|
|
|
|
2022-03-14 18:22:12 +08:00
|
|
|
.mx_DecoratedRoomAvatar_icon_busy::before {
|
|
|
|
background-color: $presence-busy;
|
|
|
|
}
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_NotificationBadge,
|
|
|
|
.mx_RoomTile_badgeContainer {
|
2020-07-01 06:24:46 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 18px;
|
|
|
|
width: 18px;
|
|
|
|
}
|
|
|
|
}
|