mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
make non-member inviter name also bold
This commit is contained in:
parent
86620839ae
commit
1100320351
@ -118,6 +118,9 @@ limitations under the License.
|
||||
|
||||
.mx_RoomPreviewBar_inviter {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
a.mx_RoomPreviewBar_inviter {
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -337,7 +337,7 @@ module.exports = React.createClass({
|
||||
</a>
|
||||
);
|
||||
} else {
|
||||
inviterElement = this.props.inviterName;
|
||||
inviterElement = (<span className="mx_RoomPreviewBar_inviter">{this.props.inviterName}</span>);
|
||||
}
|
||||
|
||||
title = _t("Do you want to join this room?");
|
||||
|
Loading…
Reference in New Issue
Block a user