mirror of https://github.com/vector-im/riot-web
Nest sticker image element for correct positioning of tooltips.
parent
e2cedbe9d7
commit
7755a3ce90
|
@ -53,13 +53,15 @@ export default class MStickerBody extends MImageBody {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className="mx_MImageBody" ref="body">
|
<span className="mx_MImageBody" ref="body">
|
||||||
<img className="mx_MImageBody_thumbnail" src={thumbUrl} ref="image"
|
<div className="mx_MImageBody_thumbnail_container">
|
||||||
alt={content.body}
|
<img className="mx_MImageBody_thumbnail" src={thumbUrl} ref="image"
|
||||||
onLoad={this.props.onWidgetLoad}
|
alt={content.body}
|
||||||
onMouseEnter={this._onMouseEnter}
|
onLoad={this.props.onWidgetLoad}
|
||||||
onMouseLeave={this._onMouseLeave}
|
onMouseEnter={this._onMouseEnter}
|
||||||
/>
|
onMouseLeave={this._onMouseLeave}
|
||||||
{ tooltip }
|
/>
|
||||||
|
{ tooltip }
|
||||||
|
</div>
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue