Files
ThreadNet-Web/res/css/views/right_panel/_UserInfo.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

235 lines
5.7 KiB
Plaintext
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2019 The Matrix.org Foundation C.I.C.
2024-09-09 14:57:16 +01:00
Copyright 2015, 2016 OpenMarket Ltd
2024-09-09 14:57:16 +01: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-09-08 10:19:51 +01:00
.mx_UserInfo.mx_BaseCard {
/* UserInfo has a circular image at the top so it fits between the back & close buttons */
2020-09-08 10:19:51 +01:00
padding-top: 0;
overflow-y: auto;
font-size: var(--cpd-font-size-body-sm);
2019-11-13 17:59:22 +01:00
.mx_UserInfo_cancel {
cursor: pointer;
position: absolute;
top: 0;
border-radius: 4px;
background-color: $dark-panel-bg-color;
margin: 9px;
z-index: 1; /* render on top of the right panel */
div {
height: 16px;
width: 16px;
padding: 4px;
mask-image: url("$(res)/img/minimise.svg");
mask-repeat: no-repeat;
mask-position: 7px center;
2021-11-16 11:10:44 +01:00
background-color: $header-panel-text-primary-color;
}
2019-11-13 17:59:22 +01:00
}
2019-11-12 16:26:26 +01:00
2019-11-13 17:59:22 +01:00
.mx_UserInfo_container {
padding: var(--cpd-space-4x) 0;
margin: 0 var(--cpd-space-4x);
.mx_UserInfo_container_verifyButton {
margin-top: $spacing-8;
}
& + .mx_UserInfo_container {
border-top: 1px solid $separator;
}
2019-11-13 17:59:22 +01:00
}
.mx_UserInfo_memberDetailsContainer {
padding-top: 0;
2019-11-13 17:59:22 +01:00
padding-bottom: 0;
2022-05-23 11:42:31 +00:00
margin-bottom: $spacing-8;
2019-11-13 17:59:22 +01:00
}
2022-03-22 18:14:11 -04:00
.mx_RoomTile_titleContainer {
2019-11-13 17:59:22 +01:00
width: 154px;
}
.mx_RoomTile_badge {
display: none;
}
2022-03-22 18:14:11 -04:00
.mx_RoomTile_title {
2019-11-13 17:59:22 +01:00
width: 160px;
}
.mx_UserInfo_avatar {
2022-05-23 11:42:31 +00:00
margin: $spacing-24 $spacing-32 0 $spacing-32;
2019-11-13 17:59:22 +01:00
2022-05-23 11:42:31 +00:00
.mx_UserInfo_avatar_transition {
max-width: 120px;
aspect-ratio: 1 / 1;
2022-05-23 11:42:31 +00:00
margin: 0 auto;
transition: 0.5s;
2019-11-13 17:59:22 +01:00
.mx_BaseAvatar {
/* Override the calculated font-size so that the letter isn't tiny */
font-size: 4rem;
}
.mx_BaseAvatar,
.mx_BaseAvatar img {
width: 100%;
height: 100%;
2022-05-23 11:42:31 +00:00
}
}
2019-11-13 17:59:22 +01:00
}
h2 {
2019-11-13 17:59:22 +01:00
text-transform: uppercase;
color: $tertiary-content;
font: var(--cpd-font-body-md-semibold);
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2022-05-23 11:42:31 +00:00
margin: $spacing-4 0;
2019-11-13 17:59:22 +01:00
}
p {
margin: 5px 0;
2019-11-13 17:59:22 +01:00
}
.mx_UserInfo_profile {
h1 {
font-size: $font-20px;
2020-03-31 15:26:23 +01:00
line-height: $font-25px;
2019-11-13 17:59:22 +01:00
/* limit to 2 lines, show an ellipsis if it overflows */
/* this looks webkit specific but is supported by Firefox 68+ */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
word-break: break-all;
text-overflow: ellipsis;
/* E2E icon wrapper */
.mx_Flex > span {
display: inline-block;
2019-11-13 17:59:22 +01:00
}
}
.mx_UserInfo_profileStatus {
margin: var(--cpd-space-1x) 0;
2019-11-12 16:26:26 +01:00
}
}
2024-09-12 14:18:25 +01:00
.mx_UserInfo_timezone {
margin: var(--cpd-space-1x) 0;
}
.mx_PresenceLabel {
font: var(--cpd-font-body-sm-regular);
opacity: 1;
}
2022-05-23 11:42:31 +00:00
.mx_UserInfo_memberDetails {
.mx_UserInfo_profileField {
display: flex;
justify-content: center;
align-items: center;
margin: 6px 0;
2022-05-23 11:42:31 +00:00
.mx_UserInfo_roleDescription {
display: flex;
justify-content: center;
align-items: center;
/* try to make it the same height as the dropdown */
2022-05-23 11:42:31 +00:00
margin: 11px 0 12px 0;
}
.mx_Field {
margin: 0;
}
}
2019-11-12 16:26:26 +01:00
}
2019-11-13 17:59:22 +01:00
.mx_UserInfo_field {
2020-03-31 15:26:23 +01:00
line-height: $font-16px;
}
2019-11-13 17:59:22 +01:00
.mx_UserInfo_statusMessage {
2021-12-28 21:54:54 +01:00
$statusNumberOfLines: 3;
2023-06-29 11:30:25 +01:00
font: var(--cpd-font-body-sm-regular);
2020-03-31 15:26:23 +01:00
font-size: $font-11px;
2023-06-29 11:30:25 +01:00
line-height: 1rem;
2019-11-13 17:59:22 +01:00
opacity: 0.5;
overflow: hidden;
2021-12-28 21:54:54 +01:00
word-break: break-word;
text-overflow: ellipsis;
display: -webkit-box;
2023-06-29 11:30:25 +01:00
max-height: calc(1rem * $statusNumberOfLines);
2021-12-28 21:54:54 +01:00
-webkit-line-clamp: $statusNumberOfLines;
-webkit-box-orient: vertical;
2019-11-13 17:59:22 +01:00
}
2020-09-11 11:39:58 +01:00
.mx_AutoHideScrollbar {
flex: 1 1 0;
2019-11-13 17:59:22 +01:00
}
.mx_UserInfo_devices {
.mx_UserInfo_device {
display: flex;
margin: $spacing-8 0;
2019-11-19 12:51:37 +01:00
2019-11-13 17:59:22 +01:00
&.mx_UserInfo_device_verified {
.mx_UserInfo_device_trusted {
2021-11-11 14:37:29 +01:00
color: $accent;
2019-11-13 17:59:22 +01:00
}
}
&.mx_UserInfo_device_unverified {
.mx_UserInfo_device_trusted {
2021-11-11 14:37:29 +01:00
color: $alert;
2019-11-13 17:59:22 +01:00
}
}
.mx_UserInfo_device_name {
flex: 1;
margin: 0 5px;
2019-11-19 12:51:37 +01:00
word-break: break-word;
2019-11-13 17:59:22 +01:00
}
}
/* both for icon in expand button and device item */
2019-11-13 17:59:22 +01:00
.mx_E2EIcon {
/* don't squeeze */
2019-11-13 17:59:22 +01:00
flex: 0 0 auto;
margin: 0;
2019-11-13 17:59:22 +01:00
width: 12px;
height: 12px;
}
.mx_UserInfo_expand {
column-gap: 5px; /* cf: mx_UserInfo_device_name */
margin-bottom: 11px;
align-items: initial; /* Cancel the default property */
2022-05-23 11:42:31 +00:00
}
}
&.mx_UserInfo_smallAvatar {
.mx_UserInfo_avatar {
.mx_UserInfo_avatar_transition {
max-width: 72px;
margin: 0 auto;
}
.mx_BaseAvatar {
/* Override the calculated font-size so that the letter isn't tiny */
font-size: 2rem;
}
}
2019-11-13 17:59:22 +01:00
}
}