From af303fd1e6d98b8c0e42d21c3aea9616c7332d7d Mon Sep 17 00:00:00 2001 From: Naitikk Date: Sat, 21 Feb 2026 13:42:55 +0530 Subject: [PATCH 1/2] fix: ensure toast notifications appear above modals --- apps/meteor/app/theme/client/main.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/meteor/app/theme/client/main.css b/apps/meteor/app/theme/client/main.css index 036ed328b4233..589a9df39d86a 100644 --- a/apps/meteor/app/theme/client/main.css +++ b/apps/meteor/app/theme/client/main.css @@ -14,3 +14,9 @@ @import url('imports/general/theme_old.css'); @import url('./rocketchat.font.css'); @import url('../../../node_modules/@rocket.chat/fuselage/dist/fuselage.css'); + +/* Toast above modals */ +#toastBarRoot { + position: fixed; + z-index: 10000; +} \ No newline at end of file From 4b881841d452fb4cd7c13a2e504162e2188a07b4 Mon Sep 17 00:00:00 2001 From: Naitikk Date: Sat, 21 Feb 2026 14:39:17 +0530 Subject: [PATCH 2/2] chore: add changeset --- .changeset/hot-doors-wait.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/hot-doors-wait.md diff --git a/.changeset/hot-doors-wait.md b/.changeset/hot-doors-wait.md new file mode 100644 index 0000000000000..c84515f50c37b --- /dev/null +++ b/.changeset/hot-doors-wait.md @@ -0,0 +1,5 @@ +--- +'@rocket.chat/meteor': patch +--- + +ensure toast notifications appear above modals