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 {
|
2020-08-28 23:37:23 +02:00
|
|
|
// to make the menu button sort of aligned with the explore button below
|
2020-07-13 18:21:08 +02:00
|
|
|
padding-right: 6px;
|
|
|
|
|
2020-08-29 00:14:08 +02:00
|
|
|
&.mx_UserMenu_prototype {
|
|
|
|
// The margin & padding combination between here and the ::after is to
|
|
|
|
// align the border line with the tag panel.
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
|
|
|
padding-right: 0; // make the right edge line up with the explore button
|
|
|
|
|
|
|
|
.mx_UserMenu_headerButtons {
|
|
|
|
// considering we've eliminated right padding on the menu itself, we need to
|
|
|
|
// push the chevron in slightly (roughly lining up with the center of the
|
|
|
|
// plus buttons)
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we cheat opacity on the theme colour with an after selector here
|
|
|
|
&::after {
|
|
|
|
content: '';
|
2020-08-31 19:20:28 +02:00
|
|
|
border-bottom: 1px solid $primary-fg-color; // XXX: Variable abuse
|
2020-08-29 00:14:08 +02:00
|
|
|
opacity: 0.2;
|
|
|
|
display: block;
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_headerButtons {
|
2020-06-24 05:17:39 +02:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
2020-09-01 15:32:21 +02:00
|
|
|
background: $tertiary-fg-color;
|
2020-08-28 23:37:23 +02:00
|
|
|
mask-image: url('$(res)/img/feather-customised/chevron-down.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-26 03:54:17 +02:00
|
|
|
|
|
|
|
.mx_UserMenu_row {
|
|
|
|
// Create a row-based flexbox to ensure items stay aligned correctly.
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.mx_UserMenu_userAvatarContainer {
|
|
|
|
position: relative; // to make default avatars work
|
|
|
|
margin-right: 8px;
|
|
|
|
height: 32px; // to remove the unknown 4px gap the browser puts below it
|
2021-03-01 16:53:16 +01:00
|
|
|
padding: 3px 0; // to align with and without using doubleName
|
2020-06-26 03:54:17 +02:00
|
|
|
|
|
|
|
.mx_UserMenu_userAvatar {
|
|
|
|
border-radius: 32px; // should match avatar size
|
2020-07-13 18:21:08 +02:00
|
|
|
object-fit: cover;
|
2020-06-26 03:54:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-29 00:14:08 +02:00
|
|
|
.mx_UserMenu_doubleName {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0; // make flexbox aware that it can crush this to a tiny width
|
|
|
|
|
|
|
|
.mx_UserMenu_userName,
|
|
|
|
.mx_UserMenu_subUserName {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_UserMenu_subUserName {
|
|
|
|
color: $muted-fg-color;
|
|
|
|
font-size: $font-13px;
|
|
|
|
line-height: $font-18px;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
// Ellipsize any text overflow
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:54:17 +02:00
|
|
|
.mx_UserMenu_userName {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-20px;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
// Ellipsize any text overflow
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_UserMenu_headerButtons {
|
|
|
|
// No special styles: the rest of the layout happens to make it work.
|
|
|
|
}
|
2021-04-15 08:47:09 +02:00
|
|
|
|
|
|
|
.mx_UserMenu_dnd {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin-right: 8px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
background: $muted-fg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_UserMenu_dnd_noisy::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/notifications.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_UserMenu_dnd_muted::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/notifications-off.svg');
|
|
|
|
}
|
|
|
|
}
|
2020-06-26 03:54:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_UserMenu_minimized {
|
2020-12-15 14:45:10 +01:00
|
|
|
padding-right: 0px;
|
2020-06-26 03:54:17 +02:00
|
|
|
|
2020-12-15 14:45:10 +01:00
|
|
|
.mx_UserMenu_userAvatarContainer {
|
|
|
|
margin-right: 0px;
|
2020-06-26 03:54:17 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-08 06:06:41 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu {
|
2021-02-15 18:34:28 +01:00
|
|
|
width: 258px;
|
2020-06-08 06:06:41 +02:00
|
|
|
|
2020-08-29 01:03:17 +02:00
|
|
|
// These override the styles already present on the user menu rather than try to
|
|
|
|
// define a new menu. They are specifically for the stacked menu when a community
|
|
|
|
// is being represented as a prototype.
|
|
|
|
&.mx_UserMenu_contextMenu_prototype {
|
|
|
|
padding-bottom: 16px;
|
|
|
|
|
|
|
|
.mx_UserMenu_contextMenu_header {
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-top: 16px;
|
|
|
|
|
|
|
|
&:nth-child(n + 2) {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
width: 85%;
|
|
|
|
opacity: 0.2;
|
|
|
|
border: none;
|
2020-08-31 19:20:28 +02:00
|
|
|
border-bottom: 1px solid $primary-fg-color; // XXX: Variable abuse
|
2020-08-29 01:03:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_IconizedContextMenu {
|
|
|
|
> .mx_IconizedContextMenu_optionList {
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_AccessibleButton {
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2020-06-08 06:06:41 +02:00
|
|
|
// Create a flexbox to organize the header a bit easier
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_name {
|
2020-06-08 06:06:41 +02:00
|
|
|
// Create another flexbox of columns to handle large user IDs
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: calc(100% - 40px); // 40px = 32px theme button + 8px margin to theme button
|
|
|
|
|
|
|
|
* {
|
|
|
|
// Automatically grow all subelements to fit the container
|
|
|
|
flex: 1;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
// Ellipsize any text overflow
|
|
|
|
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;
|
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-20px;
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_userId {
|
2020-06-08 06:06:41 +02:00
|
|
|
font-size: $font-15px;
|
|
|
|
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;
|
|
|
|
|
|
|
|
// to make alignment easier, create flexbox for the image
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_link {
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: inherit;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
background: $primary-fg-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconHome::before {
|
2020-07-06 18:28:54 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/home.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
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_iconArchive::before {
|
2020-07-06 16:12:36 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/archived.svg');
|
2020-06-24 05:17:39 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_iconMessage::before {
|
2020-07-06 16:12:36 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/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
|
|
|
}
|
2020-08-29 01:03:17 +02:00
|
|
|
|
|
|
|
.mx_UserMenu_iconMembers::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/members.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_UserMenu_iconInvite::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/invite.svg');
|
|
|
|
}
|
2020-06-08 06:06:41 +02:00
|
|
|
}
|