You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-20 16:22:28 +03:00
make non-member inviter name also bold
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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?");
|
||||||
|
|||||||
Reference in New Issue
Block a user