diff --git a/components/pages/create-video/CreateInput/VideoCreationForm.tsx b/components/pages/create-video/CreateInput/VideoCreationForm.tsx index a9fd171..6dc0a32 100644 --- a/components/pages/create-video/CreateInput/VideoCreationForm.tsx +++ b/components/pages/create-video/CreateInput/VideoCreationForm.tsx @@ -17,7 +17,7 @@ import { MobileConfigModal } from './MobileConfigModal'; import { AddItemModal } from './AddItemModal'; import { defaultConfig } from './config-options'; import type { ConfigOptions } from './config-options'; -import { Eye, Check, ArrowRight, X } from 'lucide-react'; +import { CircleArrowRight, X } from 'lucide-react'; import TemplatePreviewModal from '@/components/common/TemplatePreviewModal'; import { PcTemplateModal } from "@/components/ChatInputBox/PcTemplateModal" import { useDeviceType } from '@/hooks/useDeviceType'; @@ -499,9 +499,25 @@ export default function VideoCreationForm() {
-
0 && ( + + )} + {/* Dark overlay for readability on hover */} +
+
{ setIsMentionOpen(false); const url = (tpl as any).show_url as string | undefined; @@ -513,9 +529,9 @@ export default function VideoCreationForm() { } }} > - {tpl.name} + {tpl.name} {/* Floating actions on hover, right-aligned and overlaying the name */} -
+
+ {/* Description at bottom on hover */} +
+
+
{(tpl as any).generateText || tpl.name}
+
+
);