1
0
Fork 0
forked from gitea/nas

Preparing for follow form

This commit is contained in:
Eugen Rochko 2016-09-01 15:13:02 +02:00
parent c249ceb10c
commit 2d57bcf1b7
4 changed files with 77 additions and 3 deletions

View file

@ -34,10 +34,10 @@ const Status = React.createClass({
if (status.get('reblog') !== null) {
return (
<div>
<div style={{ cursor: 'pointer' }}>
<div style={{ marginLeft: '68px', color: '#616b86', padding: '8px 0', paddingBottom: '2px', fontSize: '14px', position: 'relative' }}>
<div style={{ position: 'absolute', 'left': '-26px'}}><i className='fa fa-fw fa-retweet'></i></div>
<a href={status.getIn(['account', 'url'])} style={{ color: '#616b86' }}>{status.getIn(['account', 'display_name'])}</a> reblogged
<a href={status.getIn(['account', 'url'])} className='status__display-name'><strong style={{ color: '#616b86'}}>{status.getIn(['account', 'display_name'])}</strong></a> reblogged
</div>
<Status {...other} status={status.get('reblog')} />