diff options
author | Soshi Kato <mail@sossii.com> | 2017-05-09 21:01:29 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-09 14:01:29 +0200 |
commit | f36a7912271d947e09e67759e293bd95a0b29d2b (patch) | |
tree | 94d3b4cdde20e4c33a85c6926d0458996c3cc54a | |
parent | ef226a6f223ad3bdf662efb0ed75694b3f0bfb56 (diff) |
Fix snackbar notification stacking order (#2935)
-rw-r--r-- | app/javascript/mastodon/selectors/index.js | 5 |
1 files changed, 4 insertions, 1 deletions
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 + } }); }); |