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-07-13 18:21:08 +02:00
|
|
|
|
|
|
|
// to make the ... button sort of aligned with the explore button below
|
|
|
|
padding-right: 6px;
|
|
|
|
|
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;
|
|
|
|
background: $primary-fg-color;
|
2020-07-06 18:28:54 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/context-menu.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
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_UserMenu_minimized {
|
|
|
|
.mx_UserMenu_userHeader {
|
|
|
|
.mx_UserMenu_row {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_UserMenu_userAvatarContainer {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-08 06:06:41 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu {
|
2020-06-12 18:29:42 +02:00
|
|
|
width: 247px;
|
2020-06-08 06:06:41 +02:00
|
|
|
|
2020-06-26 03:38:11 +02:00
|
|
|
.mx_UserMenu_contextMenu_redRow {
|
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
|
|
|
color: $warning-color !important; // !important to override styles from context menu
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_IconizedContextMenu_icon::before {
|
|
|
|
background-color: $warning-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-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-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-06-08 06:06:41 +02:00
|
|
|
}
|