mirror of
https://github.com/langgenius/dify.git
synced 2026-04-14 07:56:31 +08:00
fix: increase ContentDialog z-index to display above workflow operators
The collaboration feature increased workflow operator z-index from z-10 to z-[60]. This caused the AppInfo ContentDialog (z-30) to appear below the operator buttons. Increased ContentDialog z-index to z-[70] to ensure proper layer hierarchy.
This commit is contained in:
parent
e6730f7164
commit
a9e74b21f1
@ -15,11 +15,12 @@ const ContentDialog = ({
|
||||
onClose,
|
||||
children,
|
||||
}: ContentDialogProps) => {
|
||||
// z-[70]: Ensures dialog appears above workflow operators (z-[60]) and other UI elements
|
||||
return (
|
||||
<Transition
|
||||
show={show}
|
||||
as='div'
|
||||
className='absolute left-0 top-0 z-30 box-border h-full w-full p-2'
|
||||
className='absolute left-0 top-0 z-[70] box-border h-full w-full p-2'
|
||||
>
|
||||
<TransitionChild>
|
||||
<div
|
||||
|
||||
Loading…
Reference in New Issue
Block a user