make non-member inviter name also bold

pull/21833/head
Bruno Windels 2019-04-17 11:02:58 +02:00
parent 86620839ae
commit 1100320351
2 changed files with 4 additions and 1 deletions

View File

@ -118,6 +118,9 @@ limitations under the License.
.mx_RoomPreviewBar_inviter { .mx_RoomPreviewBar_inviter {
font-weight: 600; font-weight: 600;
}
a.mx_RoomPreviewBar_inviter {
text-decoration: underline; text-decoration: underline;
cursor: pointer; cursor: pointer;
} }

View File

@ -337,7 +337,7 @@ module.exports = React.createClass({
</a> </a>
); );
} else { } else {
inviterElement = this.props.inviterName; inviterElement = (<span className="mx_RoomPreviewBar_inviter">{this.props.inviterName}</span>);
} }
title = _t("Do you want to join this room?"); title = _t("Do you want to join this room?");