mirror of https://github.com/vector-im/riot-web
Merge pull request #1487 from matrix-org/luke/fix-overflow-entity-tile
Refactor class names for an entity tile being hovered overpull/21833/head
commit
9d2f5b0a8a
|
@ -116,7 +116,9 @@ module.exports = React.createClass({
|
||||||
nameEl = (
|
nameEl = (
|
||||||
<div className="mx_EntityTile_details">
|
<div className="mx_EntityTile_details">
|
||||||
<img className="mx_EntityTile_chevron" src="img/member_chevron.png" width="8" height="12" />
|
<img className="mx_EntityTile_chevron" src="img/member_chevron.png" width="8" height="12" />
|
||||||
<EmojiText element="div" className="mx_EntityTile_name_hover" dir="auto">{ name }</EmojiText>
|
<EmojiText element="div" className="mx_EntityTile_name mx_EntityTile_name_hover" dir="auto">
|
||||||
|
{ name }
|
||||||
|
</EmojiText>
|
||||||
<PresenceLabel activeAgo={activeAgo}
|
<PresenceLabel activeAgo={activeAgo}
|
||||||
currentlyActive={this.props.presenceCurrentlyActive}
|
currentlyActive={this.props.presenceCurrentlyActive}
|
||||||
presenceState={this.props.presenceState} />
|
presenceState={this.props.presenceState} />
|
||||||
|
|
Loading…
Reference in New Issue