logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: ae57b3a8c5b8ab0bdc11fac9c5e8d9277fb1f95d
parent: 0dbbc16c69652afe63d0b3dd49c06939351e3bc6
Author: Chris Martin <ch.martin@gmail.com>
Date:   Mon, 10 Apr 2017 16:41:52 -0400

Add more specific class names to notification divs (#1120)


Diffstat:

Mapp/assets/javascripts/components/features/notifications/components/notification.jsx6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/assets/javascripts/components/features/notifications/components/notification.jsx b/app/assets/javascripts/components/features/notifications/components/notification.jsx @@ -21,7 +21,7 @@ const Notification = React.createClass({ renderFollow (account, link) { return ( - <div className='notification'> + <div className='notification notification-follow'> <div className='notification__message'> <div style={{ position: 'absolute', 'left': '-26px'}}> <i className='fa fa-fw fa-user-plus' /> @@ -41,7 +41,7 @@ const Notification = React.createClass({ renderFavourite (notification, link) { return ( - <div className='notification'> + <div className='notification notification-favourite'> <div className='notification__message'> <div style={{ position: 'absolute', 'left': '-26px'}}> <i className='fa fa-fw fa-star' style={{ color: '#ca8f04' }} /> @@ -57,7 +57,7 @@ const Notification = React.createClass({ renderReblog (notification, link) { return ( - <div className='notification'> + <div className='notification notification-reblog'> <div className='notification__message'> <div style={{ position: 'absolute', 'left': '-26px'}}> <i className='fa fa-fw fa-retweet' />