]> cat aescling's git repositories - mastodon.git/commitdiff
Fix snackbar notification stacking order (#2935)
authorSoshi Kato <mail@sossii.com>
Tue, 9 May 2017 12:01:29 +0000 (21:01 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Tue, 9 May 2017 12:01:29 +0000 (14:01 +0200)
app/javascript/mastodon/selectors/index.js

index 7a75e2660b620b96449f63529fb4bb526db8c056..c2a8fd4cf787c5abfc4377825d0a9acc7498b975 100644 (file)
@@ -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
+      }
     });
   });