From e4ea69266fcfc03b5a27f5dd358ed85eed70a6c7 Mon Sep 17 00:00:00 2001 From: bydawen Date: Sat, 18 Oct 2025 00:26:03 +0300 Subject: [PATCH] fix: pointer-events issue on toast container (#2139) --- src/content-tags-drawer/ContentTagsDrawer.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/content-tags-drawer/ContentTagsDrawer.scss b/src/content-tags-drawer/ContentTagsDrawer.scss index 30a3730ca..36954104f 100644 --- a/src/content-tags-drawer/ContentTagsDrawer.scss +++ b/src/content-tags-drawer/ContentTagsDrawer.scss @@ -37,3 +37,9 @@ min-height: 100vh; } } + +// Fix a bug with a toast on edit tags sheet component: can't click on close toast button +// https://github.com/openedx/frontend-app-authoring/issues/1898 +#toast-root[data-focus-on-hidden] { + pointer-events: initial !important; +}