diff options
author | Stephen Burgess <stephenburgess8@gmail.com> | 2017-04-23 14:34:33 -0500 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-23 21:34:33 +0200 |
commit | 7ee8e50b9cf15fd01719ec9a073fcacb18f31eeb (patch) | |
tree | 4572487d76a182266e1d4a652af92f3d51ea22f7 /app/assets/javascripts/components | |
parent | 995f0ad51ca2d151291ff827c7e0b2378ff0e108 (diff) |
fix(style): Fix styles after classname refactor (#2368)
Float detailed status display avatar left. Only apply display block to display names in status info, not in detailed status. Thanks to @nightpool for finding those. Make star icon in notification show up as gold. Add anchor selector back to status__content__spoiler-link in order to override default anchor style elsewhere.
Diffstat (limited to 'app/assets/javascripts/components')
-rw-r--r-- | app/assets/javascripts/components/features/status/components/detailed_status.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/status/components/detailed_status.jsx b/app/assets/javascripts/components/features/status/components/detailed_status.jsx index c2fa1a325..8ab214372 100644 --- a/app/assets/javascripts/components/features/status/components/detailed_status.jsx +++ b/app/assets/javascripts/components/features/status/components/detailed_status.jsx @@ -51,7 +51,7 @@ class DetailedStatus extends React.PureComponent { return ( <div className='detailed-status'> <a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='detailed-status__display-name'> - <div className='.detailed-status__display-avatar'><Avatar src={status.getIn(['account', 'avatar'])} staticSrc={status.getIn(['account', 'avatar_static'])} size={48} /></div> + <div className='detailed-status__display-avatar'><Avatar src={status.getIn(['account', 'avatar'])} staticSrc={status.getIn(['account', 'avatar_static'])} size={48} /></div> <DisplayName account={status.get('account')} /> </a> |