diff options
author | Ondřej Hruška <ondra@ondrovo.com> | 2017-07-21 21:12:43 +0200 |
---|---|---|
committer | Ondřej Hruška <ondra@ondrovo.com> | 2017-07-21 21:12:43 +0200 |
commit | 0244019ca17288802a144c84b7e0f319f1685695 (patch) | |
tree | 83785c3907420f2e88aeb4347d9c72b48f08d6ef /app/javascript/glitch/components/status | |
parent | 604654ccb417ffdc9b48d876bea76c8bec14f360 (diff) |
Fixed horrible outline around notif clearing checkbox & moved the overlay to a more sr-friendly place
Diffstat (limited to 'app/javascript/glitch/components/status')
-rw-r--r-- | app/javascript/glitch/components/status/index.js | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/app/javascript/glitch/components/status/index.js b/app/javascript/glitch/components/status/index.js index dc06250ec..b7ec8b4ca 100644 --- a/app/javascript/glitch/components/status/index.js +++ b/app/javascript/glitch/components/status/index.js @@ -526,10 +526,6 @@ applicable. } } - markNotifForDelete = () => { - this.setState({ 'markedForDelete' : !this.state.markedForDelete }); - } - /* #### `render()`. @@ -699,11 +695,6 @@ collapsed. }} ref={handleRef} > - {notification ? ( - <NotificationOverlayContainer - notification={notification} - /> - ) : null} {prepend && account ? ( <StatusPrepend type={prepend} @@ -739,6 +730,11 @@ collapsed. account={status.get('account')} /> ) : null} + {notification ? ( + <NotificationOverlayContainer + notification={notification} + /> + ) : null} </article> ); |