2020-06-07 22:06:41 -06:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-06-07 22:06:41 -06:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-06-07 22:06:41 -06:00
|
|
|
*/
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu {
|
2021-11-30 18:08:46 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
2021-12-07 09:32:00 +00:00
|
|
|
.mx_AccessibleButton {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
2022-06-06 04:25:19 +00:00
|
|
|
.mx_UserMenu_userAvatar {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.mx_BaseAvatar {
|
2022-07-27 14:39:29 +01:00
|
|
|
pointer-events: none; /* makes the avatar non-draggable */
|
2022-06-06 04:25:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-11-30 18:08:46 +00:00
|
|
|
}
|
2020-08-28 16:14:08 -06:00
|
|
|
|
2023-07-06 00:00:03 +02:00
|
|
|
.mx_UserMenu_contextMenuButton {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-30 18:08:46 +00:00
|
|
|
.mx_UserMenu_name {
|
2023-07-06 00:00:03 +02:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
2023-06-29 11:30:25 +01:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2021-11-30 18:08:46 +00:00
|
|
|
font-size: $font-15px;
|
|
|
|
|
line-height: $font-24px;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
2020-08-28 16:14:08 -06:00
|
|
|
|
2021-11-30 18:08:46 +00:00
|
|
|
.mx_UserMenu_dndBadge {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -2px;
|
|
|
|
|
right: -7px;
|
2020-06-23 21:17:39 -06:00
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
2021-11-30 18:08:46 +00:00
|
|
|
border-radius: 50%;
|
2020-06-23 21:17:39 -06:00
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
mask-position: center;
|
|
|
|
|
mask-size: contain;
|
|
|
|
|
mask-repeat: no-repeat;
|
2021-11-30 18:08:46 +00:00
|
|
|
background-color: $alert;
|
|
|
|
|
mask-image: url("$(res)/img/element-icons/roomlist/dnd.svg");
|
2020-06-25 19:54:17 -06:00
|
|
|
}
|
|
|
|
|
}
|
2020-06-07 22:06:41 -06:00
|
|
|
}
|
|
|
|
|
|
2022-03-24 08:49:48 +00:00
|
|
|
.mx_IconizedContextMenu {
|
|
|
|
|
&.mx_UserMenu_contextMenu {
|
|
|
|
|
width: 258px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-07 22:06:41 -06:00
|
|
|
|
2022-03-24 08:49:48 +00:00
|
|
|
.mx_UserMenu_contextMenu {
|
2020-08-04 17:20:17 +01:00
|
|
|
&.mx_IconizedContextMenu .mx_IconizedContextMenu_optionList_red {
|
2020-06-25 15:13:28 -06:00
|
|
|
.mx_AccessibleButton {
|
2020-06-30 22:11:12 +01:00
|
|
|
padding-top: 16px;
|
|
|
|
|
padding-bottom: 16px;
|
2020-06-25 15:13:28 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_contextMenu_header {
|
2020-06-30 22:11:12 +01:00
|
|
|
padding: 20px;
|
|
|
|
|
|
2022-07-27 14:39:29 +01:00
|
|
|
/* Create a flexbox to organize the header a bit easier */
|
2020-06-07 22:06:41 -06:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_contextMenu_name {
|
2022-07-27 14:39:29 +01:00
|
|
|
/* Create another flexbox of columns to handle large user IDs */
|
2020-06-07 22:06:41 -06:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2022-07-27 14:39:29 +01:00
|
|
|
width: calc(100% - 40px); /* 40px = 32px theme button + 8px margin to theme button */
|
2020-06-07 22:06:41 -06:00
|
|
|
|
2022-03-24 08:49:48 +00:00
|
|
|
.mx_UserMenu_contextMenu_displayName,
|
|
|
|
|
.mx_UserMenu_contextMenu_userId {
|
2024-08-09 16:15:17 +02:00
|
|
|
font: var(--cpd-font-body-lg-regular);
|
2022-03-24 08:49:48 +00:00
|
|
|
|
2022-07-27 14:39:29 +01:00
|
|
|
/* Automatically grow subelements to fit the container */
|
2020-06-07 22:06:41 -06:00
|
|
|
flex: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
2022-07-27 14:39:29 +01:00
|
|
|
/* Ellipsize text overflow */
|
2020-06-07 22:06:41 -06:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_contextMenu_displayName {
|
2023-06-29 11:30:25 +01:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-06-07 22:06:41 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_contextMenu_themeButton {
|
2020-06-07 22:06:41 -06:00
|
|
|
min-width: 32px;
|
|
|
|
|
max-width: 32px;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
border-radius: 32px;
|
|
|
|
|
background-color: $theme-button-bg-color;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
2022-07-27 14:39:29 +01:00
|
|
|
/* to make alignment easier, create flexbox for the image */
|
2020-06-07 22:06:41 -06:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2020-10-19 12:34:25 +01:00
|
|
|
|
2020-11-12 12:46:55 +00:00
|
|
|
&.mx_UserMenu_contextMenu_guestPrompts {
|
2023-03-02 17:36:16 +00:00
|
|
|
padding-top: 0;
|
2020-11-12 12:46:55 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
> span {
|
2023-06-29 11:30:25 +01:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-11-12 12:46:55 +00:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
& + span {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-07 22:06:41 -06:00
|
|
|
}
|
2020-06-23 21:17:39 -06:00
|
|
|
|
|
|
|
|
.mx_IconizedContextMenu_icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
2020-06-24 07:04:19 -06:00
|
|
|
display: block;
|
2020-06-23 21:17:39 -06:00
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
2020-06-24 19:20:43 -06:00
|
|
|
display: block;
|
2020-06-23 21:17:39 -06:00
|
|
|
mask-position: center;
|
|
|
|
|
mask-size: contain;
|
|
|
|
|
mask-repeat: no-repeat;
|
2023-07-12 18:46:49 +01:00
|
|
|
background: $icon-button-color;
|
2020-06-23 21:17:39 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_iconHome::before {
|
2024-11-14 12:34:27 +00:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/home-solid.svg");
|
2020-06-23 21:17:39 -06:00
|
|
|
}
|
2021-11-30 18:08:46 +00:00
|
|
|
|
|
|
|
|
.mx_UserMenu_iconDnd::before {
|
|
|
|
|
mask-image: url("$(res)/img/element-icons/roomlist/dnd.svg");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_UserMenu_iconDndOff::before {
|
|
|
|
|
mask-image: url("$(res)/img/element-icons/roomlist/dnd-cross.svg");
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_iconBell::before {
|
2020-07-06 16:12:36 +02:00
|
|
|
mask-image: url("$(res)/img/element-icons/notifications.svg");
|
2020-06-23 21:17:39 -06:00
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_iconLock::before {
|
2024-11-14 12:34:27 +00:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/lock-solid.svg");
|
2020-06-23 21:17:39 -06:00
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_iconSettings::before {
|
2024-11-14 12:34:27 +00:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/settings-solid.svg");
|
2020-06-23 21:17:39 -06:00
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_iconMessage::before {
|
2021-11-30 18:08:46 +00:00
|
|
|
mask-image: url("$(res)/img/element-icons/feedback.svg");
|
2020-06-23 21:17:39 -06:00
|
|
|
}
|
|
|
|
|
|
2020-06-25 19:38:11 -06:00
|
|
|
.mx_UserMenu_iconSignOut::before {
|
2024-11-18 15:47:15 +00:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/leave.svg");
|
2020-06-23 21:17:39 -06:00
|
|
|
}
|
2024-06-06 09:57:28 +01:00
|
|
|
|
|
|
|
|
.mx_UserMenu_iconQr::before {
|
|
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/qr-code.svg");
|
|
|
|
|
}
|
2021-11-30 18:08:46 +00:00
|
|
|
}
|