@@ -1060,11 +1060,11 @@ export default function PDLCard({ pdl, onViewDetails, onDelete, isDemo = false,
10601060
10611061 { /* Production Section */ }
10621062 { ! hasConsentError && (
1063- < div className = "border-2 border-green-200 dark:border-green-700 rounded-lg overflow-hidden shadow-md" >
1063+ < div className = "border-2 border-yellow-400 dark:border-yellow-500 rounded-lg overflow-hidden shadow-md" >
10641064 { /* Production Header */ }
1065- < label className = "flex items-center gap-3 py-2 px-3 bg-green -100/70 dark:bg-green -900/30 cursor-pointer hover:bg-green-100 dark:hover:bg-green-900/40 transition-colors" data-tour = "pdl-production" >
1066- < div className = "flex items-center gap-2 text-green-700 dark:text-green-300 font-semibold" >
1067- < Factory size = { 18 } className = "text-green -600 dark:text-green -400" />
1065+ < label className = "flex items-center gap-3 py-2 px-3 bg-yellow -100 dark:bg-yellow -900/50 cursor-pointer hover:bg-yellow-200 dark:hover:bg-yellow-800/50 transition-colors" data-tour = "pdl-production" >
1066+ < div className = "flex items-center gap-2 text-yellow-800 dark:text-yellow-200 font-semibold" >
1067+ < Factory size = { 18 } className = "text-yellow -600 dark:text-yellow -400" />
10681068 < span > Production</ span >
10691069 </ div >
10701070 < div className = "flex-1" > </ div >
@@ -1078,7 +1078,7 @@ export default function PDLCard({ pdl, onViewDetails, onDelete, isDemo = false,
10781078 } )
10791079 }
10801080 disabled = { updateTypeMutation . isPending }
1081- className = "w-5 h-5 flex-shrink-0 rounded-md border-2 border-green-300 dark:border-green-600 bg-white dark:bg-gray-800 checked:bg-green -500 dark:checked:bg-green-600 checked:border-green -500 dark:checked:border-green-600 focus:ring-2 focus:ring-green -400 focus:ring-offset-2 dark:focus:ring-offset-gray-900 cursor-pointer transition-all disabled:opacity-50 disabled:cursor-not-allowed"
1081+ className = "w-5 h-5 flex-shrink-0 rounded-md border-2 border-yellow-400 dark:border-yellow-500 bg-white dark:bg-gray-800 checked:bg-yellow -500 dark:checked:bg-yellow-500 checked:border-yellow -500 dark:checked:border-yellow-500 focus:ring-2 focus:ring-yellow -400 focus:ring-offset-2 dark:focus:ring-offset-gray-900 cursor-pointer transition-all disabled:opacity-50 disabled:cursor-not-allowed"
10821082 />
10831083 </ label >
10841084
@@ -1087,7 +1087,7 @@ export default function PDLCard({ pdl, onViewDetails, onDelete, isDemo = false,
10871087 const productionPdls = allPdls . filter ( p => p . has_production && p . id !== pdl . id && ( p . is_active ?? true ) )
10881088
10891089 return productionPdls . length > 0 ? (
1090- < div className = "px-3 py-2 bg-green -50/20 dark:bg-gray-800/50 " >
1090+ < div className = "px-3 py-2 bg-yellow -50 dark:bg-gray-800" >
10911091 < div className = "flex items-center justify-between" >
10921092 < div className = "flex items-center gap-2 text-gray-600 dark:text-gray-400" >
10931093 < Factory size = { 16 } />
@@ -1097,7 +1097,7 @@ export default function PDLCard({ pdl, onViewDetails, onDelete, isDemo = false,
10971097 value = { pdl . linked_production_pdl_id || '' }
10981098 onChange = { ( e ) => linkProductionMutation . mutate ( e . target . value || null ) }
10991099 disabled = { linkProductionMutation . isPending }
1100- className = "w-48 px-3 py-1.5 text-sm font-medium bg-white dark:bg-gray-800 border-2 border-green-300 dark:border-green-700 rounded-lg text-gray-900 dark:text-gray-100 focus:ring-2 focus:ring-green -500 dark:focus:ring-green -400 focus:border-green -500 dark:focus:border-green -400 cursor-pointer transition-all shadow-sm hover:shadow disabled:opacity-50 disabled:cursor-not-allowed"
1100+ className = "w-48 px-3 py-1.5 text-sm font-medium bg-white dark:bg-gray-800 border-2 border-yellow-400 dark:border-yellow-500 rounded-lg text-gray-900 dark:text-gray-100 focus:ring-2 focus:ring-yellow -500 dark:focus:ring-yellow -400 focus:border-yellow -500 dark:focus:border-yellow -400 cursor-pointer transition-all shadow-sm hover:shadow disabled:opacity-50 disabled:cursor-not-allowed"
11011101 >
11021102 < option value = "" > Aucun</ option >
11031103 { productionPdls . map ( p => (
0 commit comments