mirror of https://github.com/vector-im/riot-web
Just be a little less ugly
parent
f25bf58d6d
commit
2bd5b0fdad
|
@ -0,0 +1,6 @@
|
||||||
|
.mx_MessageTimestamp {
|
||||||
|
color: #777;
|
||||||
|
width: 75px;
|
||||||
|
font-size: 80%;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
.mx_SenderProfile {
|
||||||
|
display: inline-block;
|
||||||
|
width: 150px;
|
||||||
|
color: #444;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
|
@ -20,7 +20,7 @@ module.exports = React.createClass({
|
||||||
return (
|
return (
|
||||||
<div className="mx_MessageTile">
|
<div className="mx_MessageTile">
|
||||||
<MessageTimestamp ts={this.props.mxEvent.getTs()} />
|
<MessageTimestamp ts={this.props.mxEvent.getTs()} />
|
||||||
<SenderProfile mxEvent={this.props.mxEvent} />:
|
<SenderProfile mxEvent={this.props.mxEvent} />
|
||||||
<TileType mxEvent={this.props.mxEvent} />
|
<TileType mxEvent={this.props.mxEvent} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue