2018-04-12 07:23:35 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MemberInfo {
|
2018-10-25 00:23:34 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
2018-04-12 07:23:35 +08:00
|
|
|
overflow-y: auto;
|
2021-03-02 17:51:11 +08:00
|
|
|
margin-top: 8px;
|
2023-05-11 21:01:12 +08:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: $font-18px;
|
|
|
|
font-weight: var(--font-semi-bold);
|
|
|
|
margin: 16px 0 16px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_titleContainer {
|
|
|
|
width: 154px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_badge {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_title {
|
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $input-darker-fg-color;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: $font-12px;
|
|
|
|
margin: 4px 0;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:23:34 +08:00
|
|
|
.mx_MemberInfo_name {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
|
2023-05-11 21:01:12 +08:00
|
|
|
> .mx_E2EIcon {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
flex: 1;
|
|
|
|
overflow-x: auto;
|
|
|
|
max-height: 50px;
|
|
|
|
}
|
2019-02-02 00:08:09 +08:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:23:34 +08:00
|
|
|
.mx_MemberInfo_cancel {
|
|
|
|
height: 16px;
|
2019-02-20 19:45:55 +08:00
|
|
|
width: 16px;
|
|
|
|
padding: 10px 0 10px 10px;
|
2018-10-25 00:23:34 +08:00
|
|
|
cursor: pointer;
|
2019-02-18 23:49:36 +08:00
|
|
|
mask-image: url("$(res)/img/minimise.svg");
|
|
|
|
mask-repeat: no-repeat;
|
2019-02-20 19:45:55 +08:00
|
|
|
mask-position: 16px center;
|
2021-11-16 18:10:44 +08:00
|
|
|
background-color: $header-panel-text-primary-color;
|
2018-10-25 00:23:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberInfo_container {
|
2019-01-30 04:14:16 +08:00
|
|
|
margin: 0 16px 16px 16px;
|
2023-05-24 16:28:15 +08:00
|
|
|
|
|
|
|
&.mx_MemberInfo_container--profile {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
font-size: $font-15px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:23:34 +08:00
|
|
|
.mx_MemberInfo_avatar {
|
2022-03-23 07:07:37 +08:00
|
|
|
background: $spacePanel-bg-color;
|
2019-01-30 04:14:16 +08:00
|
|
|
margin-bottom: 16px;
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2023-05-11 21:01:12 +08:00
|
|
|
> img {
|
|
|
|
height: auto;
|
|
|
|
width: 100%;
|
|
|
|
max-height: 30vh;
|
|
|
|
object-fit: contain;
|
|
|
|
display: block;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2023-05-11 21:01:12 +08:00
|
|
|
.mx_BaseAvatar.mx_BaseAvatar_image {
|
|
|
|
cursor: zoom-in;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MemberInfo_field {
|
|
|
|
cursor: pointer;
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-15px;
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
2018-04-12 07:23:35 +08:00
|
|
|
margin-left: 8px;
|
2023-05-24 16:28:15 +08:00
|
|
|
margin-bottom: 16px;
|
2020-03-31 22:26:23 +08:00
|
|
|
line-height: $font-23px;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|