From f36a7912271d947e09e67759e293bd95a0b29d2b Mon Sep 17 00:00:00 2001 From: Soshi Kato Date: Tue, 9 May 2017 21:01:29 +0900 Subject: [PATCH] Fix snackbar notification stacking order (#2935) --- app/javascript/mastodon/selectors/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/selectors/index.js b/app/javascript/mastodon/selectors/index.js index 7a75e2660..c2a8fd4cf 100644 --- 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 + } }); });