logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: f36a7912271d947e09e67759e293bd95a0b29d2b
parent: ef226a6f223ad3bdf662efb0ed75694b3f0bfb56
Author: Soshi Kato <mail@sossii.com>
Date:   Tue,  9 May 2017 21:01:29 +0900

Fix snackbar notification stacking order (#2935)


Diffstat:

Mapp/javascript/mastodon/selectors/index.js5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app/javascript/mastodon/selectors/index.js b/app/javascript/mastodon/selectors/index.js @@ -56,7 +56,10 @@ export const getAlerts = createSelector([getAlertsBase], (base) => { message: item.get('message'), title: item.get('title'), key: item.get('key'), - dismissAfter: 5000 + dismissAfter: 5000, + barStyle: { + zIndex: 200 + } }); });