2020-06-08 06:06:41 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu {
|
2021-11-30 19:08:46 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2021-12-07 10:32:00 +01:00
|
|
|
.mx_AccessibleButton {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2022-06-06 06:25:19 +02:00
|
|
|
.mx_UserMenu_userAvatar {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.mx_BaseAvatar {
|
2022-07-27 15:39:29 +02:00
|
|
|
pointer-events: none; /* makes the avatar non-draggable */
|
2022-06-06 06:25:19 +02:00
|
|
|
}
|
|
|
|
}
|
2021-11-30 19:08:46 +01:00
|
|
|
}
|
2020-08-29 00:14:08 +02:00
|
|
|
|
2021-11-30 19:08:46 +01:00
|
|
|
.mx_UserMenu_name {
|
|
|
|
font-weight: $font-semi-bold;
|
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-24px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2020-08-29 00:14:08 +02:00
|
|
|
|
2021-11-30 19:08:46 +01:00
|
|
|
.mx_UserMenu_dndBadge {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -2px;
|
|
|
|
right: -7px;
|
2020-06-24 05:17:39 +02:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2021-11-30 19:08:46 +01:00
|
|
|
border-radius: 50%;
|
2020-06-24 05:17:39 +02:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
position: absolute;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
2021-11-30 19:08:46 +01:00
|
|
|
background-color: $alert;
|
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/dnd.svg');
|
2020-06-26 03:54:17 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-08 06:06:41 +02:00
|
|
|
}
|
|
|
|
|
2022-03-24 09:49:48 +01:00
|
|
|
.mx_IconizedContextMenu {
|
|
|
|
&.mx_UserMenu_contextMenu {
|
|
|
|
width: 258px;
|
|
|
|
}
|
|
|
|
}
|
2020-06-08 06:06:41 +02:00
|
|
|
|
2022-03-24 09:49:48 +01:00
|
|
|
.mx_UserMenu_contextMenu {
|
2020-08-04 18:20:17 +02:00
|
|
|
&.mx_IconizedContextMenu .mx_IconizedContextMenu_optionList_red {
|
2020-06-25 23:13:28 +02:00
|
|
|
.mx_AccessibleButton {
|
2020-06-30 23:11:12 +02:00
|
|
|
padding-top: 16px;
|
|
|
|
padding-bottom: 16px;
|
2020-06-25 23:13:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_header {
|
2020-06-30 23:11:12 +02:00
|
|
|
padding: 20px;
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Create a flexbox to organize the header a bit easier */
|
2020-06-08 06:06:41 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_name {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Create another flexbox of columns to handle large user IDs */
|
2020-06-08 06:06:41 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-07-27 15:39:29 +02:00
|
|
|
width: calc(100% - 40px); /* 40px = 32px theme button + 8px margin to theme button */
|
2020-06-08 06:06:41 +02:00
|
|
|
|
2022-03-24 09:49:48 +01:00
|
|
|
.mx_UserMenu_contextMenu_displayName,
|
|
|
|
.mx_UserMenu_contextMenu_userId {
|
|
|
|
font-size: $font-15px;
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Automatically grow subelements to fit the container */
|
2020-06-08 06:06:41 +02:00
|
|
|
flex: 1;
|
|
|
|
width: 100%;
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Ellipsize text overflow */
|
2020-06-08 06:06:41 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_displayName {
|
2020-06-08 06:06:41 +02:00
|
|
|
font-weight: bold;
|
|
|
|
line-height: $font-20px;
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_userId {
|
2020-06-08 06:06:41 +02:00
|
|
|
line-height: $font-24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_themeButton {
|
2020-06-08 06:06:41 +02: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 15:39:29 +02:00
|
|
|
/* to make alignment easier, create flexbox for the image */
|
2020-06-08 06:06:41 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-10-19 13:34:25 +02:00
|
|
|
|
2020-11-12 13:46:55 +01:00
|
|
|
&.mx_UserMenu_contextMenu_guestPrompts,
|
2020-10-19 13:34:25 +02:00
|
|
|
&.mx_UserMenu_contextMenu_hostingLink {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2020-11-12 13:46:55 +01:00
|
|
|
|
|
|
|
&.mx_UserMenu_contextMenu_guestPrompts {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
font-weight: 600;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
& + span {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-08 06:06:41 +02:00
|
|
|
}
|
2020-06-24 05:17:39 +02:00
|
|
|
|
|
|
|
.mx_IconizedContextMenu_icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2020-06-24 15:04:19 +02:00
|
|
|
display: block;
|
2020-06-24 05:17:39 +02:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2020-06-25 03:20:43 +02:00
|
|
|
display: block;
|
2020-06-24 05:17:39 +02:00
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
2021-08-12 11:27:12 +02:00
|
|
|
background: $primary-content;
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconHome::before {
|
2022-01-18 16:29:01 +01:00
|
|
|
mask-image: url('$(res)/img/element-icons/home.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
2021-11-30 19:08:46 +01: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-11-24 18:18:26 +01:00
|
|
|
.mx_UserMenu_iconHosting::before {
|
2021-02-10 12:38:32 +01:00
|
|
|
mask-image: url('$(res)/img/element-icons/brands/element.svg');
|
2020-11-24 18:18:26 +01:00
|
|
|
}
|
2020-06-24 05:17:39 +02:00
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconBell::before {
|
2020-07-06 16:12:36 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/notifications.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconLock::before {
|
2020-07-06 16:12:36 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/security.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconSettings::before {
|
2020-07-06 16:12:36 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/settings.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconMessage::before {
|
2021-11-30 19:08:46 +01:00
|
|
|
mask-image: url('$(res)/img/element-icons/feedback.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconSignOut::before {
|
2020-07-06 16:12:36 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/leave.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
2021-11-30 19:08:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_UserMenu_CustomStatusSection {
|
|
|
|
margin: 0 12px 8px;
|
|
|
|
|
2021-12-17 18:08:56 +01:00
|
|
|
.mx_UserMenu_CustomStatusSection_field {
|
2021-11-30 19:08:46 +01:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
|
2021-12-17 18:08:56 +01:00
|
|
|
&.mx_UserMenu_CustomStatusSection_field_hasQuery {
|
|
|
|
.mx_UserMenu_CustomStatusSection_clear {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_UserMenu_CustomStatusSection_input {
|
2021-11-30 19:08:46 +01:00
|
|
|
border: 1px solid $accent;
|
|
|
|
border-radius: 8px;
|
|
|
|
width: 100%;
|
2021-12-17 18:08:56 +01:00
|
|
|
|
|
|
|
&:focus + .mx_UserMenu_CustomStatusSection_clear {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_UserMenu_CustomStatusSection_clear {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 0;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 8px;
|
|
|
|
background-color: $quinary-content;
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: inherit;
|
|
|
|
height: inherit;
|
|
|
|
mask-image: url('$(res)/img/feather-customised/x.svg');
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 12px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
background-color: $secondary-content;
|
|
|
|
}
|
2021-11-30 19:08:46 +01:00
|
|
|
}
|
|
|
|
}
|
2020-08-29 01:03:17 +02:00
|
|
|
|
2021-11-30 19:08:46 +01:00
|
|
|
> p {
|
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
|
|
|
color: $secondary-content;
|
|
|
|
margin: 4px 0;
|
2020-08-29 01:03:17 +02:00
|
|
|
}
|
|
|
|
|
2021-11-30 19:08:46 +01:00
|
|
|
.mx_AccessibleButton_kind_primary_outline {
|
|
|
|
display: block;
|
2020-08-29 01:03:17 +02:00
|
|
|
}
|
2020-06-08 06:06:41 +02:00
|
|
|
}
|