Skip to content

Commit 6be2754

Browse files
Merge pull request #4750 from OneCommunityGlobal/venkataramanan_fix_wbs_edit_task_unclickable_areas
Venkataramanan 🔥 WBS edit task unclickable area issue
2 parents f128677 + e1853bd commit 6be2754

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

src/components/Projects/WBS/WBSDetail/EditTask/EditTaskModal.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ function EditTaskModal(props) {
170170
autoresize_bottom_margin: 1,
171171
skin: darkMode ? 'oxide-dark' : 'oxide',
172172
content_css: darkMode ? 'dark' : 'default',
173+
fixed_toolbar_container: '.modal-body',
174+
ui_container: '.modal-content',
173175
};
174176
/*
175177
* -------------------------------- functions --------------------------------

src/components/Projects/WBS/WBSDetail/wbs.module.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,23 @@
3535
z-index: -50;
3636
opacity: 0.1;
3737
}
38+
39+
:global(.tox-tinymce-aux) {
40+
z-index: 1000 !important;
41+
position: absolute !important;
42+
pointer-events: none !important;
43+
height: 0px !important;
44+
overflow: visible !important;
45+
}
46+
47+
:global(.tox-tinymce-aux .tox-pop),
48+
:global(.tox-tinymce-aux .tox-menu),
49+
:global(.tox-tinymce-aux .tox-toolbar__overflow),
50+
:global(.tox-tinymce-aux .tox-tooltip) {
51+
pointer-events: auto !important;
52+
z-index: 1060 !important;
53+
}
54+
3855
.load {
3956
position: relative;
4057
}

0 commit comments

Comments
 (0)