mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #2 from vector-im/timestamp_hover
Show timestamp when you hover over a message
This commit is contained in:
commit
7ac852d1fe
@ -26,7 +26,7 @@ limitations under the License.
|
|||||||
padding-right: 12px;
|
padding-right: 12px;
|
||||||
margin-left: -64px;
|
margin-left: -64px;
|
||||||
margin-top: -7px;
|
margin-top: -7px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MessageTile_avatar img {
|
.mx_MessageTile_avatar img {
|
||||||
@ -78,3 +78,15 @@ limitations under the License.
|
|||||||
.mx_MessageTile_msgOption {
|
.mx_MessageTile_msgOption {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_MessageTimestamp {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_MessageTile_last .mx_MessageTimestamp {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_MessageTile:hover .mx_MessageTimestamp {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
@ -57,8 +57,9 @@ module.exports = React.createClass({
|
|||||||
mx_MessageTile_notSent: this.props.mxEvent.status == 'not_sent',
|
mx_MessageTile_notSent: this.props.mxEvent.status == 'not_sent',
|
||||||
mx_MessageTile_highlight: this.shouldHighlight(),
|
mx_MessageTile_highlight: this.shouldHighlight(),
|
||||||
mx_MessageTile_continuation: this.props.continuation,
|
mx_MessageTile_continuation: this.props.continuation,
|
||||||
|
mx_MessageTile_last: this.props.last
|
||||||
});
|
});
|
||||||
var timestamp = this.props.last ? <MessageTimestamp ts={this.props.mxEvent.getTs()} /> : null;
|
var timestamp = <MessageTimestamp ts={this.props.mxEvent.getTs()} />
|
||||||
var avatar, sender, resend;
|
var avatar, sender, resend;
|
||||||
if (!this.props.continuation) {
|
if (!this.props.continuation) {
|
||||||
avatar = (
|
avatar = (
|
||||||
@ -84,4 +85,3 @@ module.exports = React.createClass({
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user