2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2022-03-22 23:14:55 +01:00
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
2018-04-12 01:23:35 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2018-10-23 10:49:44 +02:00
|
|
|
|
2022-03-22 23:14:55 +01:00
|
|
|
.mx_DisambiguatedProfile {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2022-05-22 09:07:29 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
cursor: pointer;
|
2022-03-22 23:14:55 +01:00
|
|
|
|
|
|
|
.mx_DisambiguatedProfile_displayName {
|
|
|
|
font-weight: 600;
|
2022-05-22 09:07:29 +02:00
|
|
|
margin-inline-end: 0;
|
2022-03-22 23:14:55 +01:00
|
|
|
}
|
2018-10-23 10:49:44 +02:00
|
|
|
|
2022-03-22 23:14:55 +01:00
|
|
|
.mx_DisambiguatedProfile_mxid {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 1.1rem;
|
2022-05-22 09:07:29 +02:00
|
|
|
margin-inline-start: 5px;
|
2022-07-27 15:39:29 +02:00
|
|
|
opacity: 0.5; /* Match mx_TextualEvent */
|
2022-03-28 09:59:06 +02:00
|
|
|
color: $primary-content;
|
2022-03-22 23:14:55 +01:00
|
|
|
}
|
2021-04-18 15:40:56 +02:00
|
|
|
}
|