diff --git a/attached_assets/image_1754682189014.png b/attached_assets/image_1754682189014.png new file mode 100644 index 0000000..d65b57f Binary files /dev/null and b/attached_assets/image_1754682189014.png differ diff --git a/client/src/components/video-edit-modal.tsx b/client/src/components/video-edit-modal.tsx index 378ca85..52f895b 100644 --- a/client/src/components/video-edit-modal.tsx +++ b/client/src/components/video-edit-modal.tsx @@ -132,7 +132,7 @@ export default function VideoEditModal({ video, isOpen, onClose }: VideoEditModa value={title} onChange={(e) => setTitle(e.target.value)} placeholder="Vnesite naslov videoposnetka" - className="w-full" + className="w-full bg-white dark:bg-gray-800 text-black dark:text-white border-gray-300 dark:border-gray-600" data-testid="input-video-title" /> @@ -147,7 +147,7 @@ export default function VideoEditModal({ video, isOpen, onClose }: VideoEditModa onChange={(e) => setDescription(e.target.value)} placeholder="Opišite vsebino videoposnetka" rows={4} - className="w-full" + className="w-full bg-white dark:bg-gray-800 text-black dark:text-white border-gray-300 dark:border-gray-600" data-testid="input-video-description" /> @@ -161,7 +161,7 @@ export default function VideoEditModal({ video, isOpen, onClose }: VideoEditModa value={category} onChange={(e) => setCategory(e.target.value)} placeholder="npr. Izobraževanje, Zabava, Tehnologija" - className="w-full" + className="w-full bg-white dark:bg-gray-800 text-black dark:text-white border-gray-300 dark:border-gray-600" data-testid="input-video-category" /> @@ -175,7 +175,7 @@ export default function VideoEditModal({ video, isOpen, onClose }: VideoEditModa value={tags} onChange={(e) => setTags(e.target.value)} placeholder="npr. tutorial, spletno programiranje, react" - className="w-full" + className="w-full bg-white dark:bg-gray-800 text-black dark:text-white border-gray-300 dark:border-gray-600" data-testid="input-video-tags" />