Checkpoint: Les th des colonnes postes utilisaient bg-blue-50/60 et bg-emerald-50/60 (semi-transparents) — remplacés par rgb(239 246 255) et rgb(240 253 244) en style inline pour un fond entièrement opaque lors du scroll vertical

This commit is contained in:
Manus
2026-06-10 10:36:03 +00:00
parent cb01e3a04a
commit d2e0137a03

View File

@@ -1321,11 +1321,15 @@ export default function DsiOpex() {
return (
<th
key={ligne.id}
style={{ position: 'sticky', top: 0, zIndex: 35 }}
style={{
position: 'sticky',
top: 0,
zIndex: 35,
background: isManuel ? 'rgb(239 246 255)' : 'rgb(240 253 244)',
borderBottom: isManuel ? '2px solid rgb(96 165 250)' : '2px solid rgb(52 211 153)'
}}
className={`text-right px-2 py-2 font-medium min-w-[90px] max-w-[110px] ${
isManuel
? 'text-blue-700 bg-blue-50/60 border-b-2 border-blue-400'
: 'text-emerald-700 bg-emerald-50/60 border-b-2 border-emerald-400'
isManuel ? 'text-blue-700' : 'text-emerald-700'
}`}
title={`${ligne.libelle} — ${isManuel ? 'Saisie manuelle' : 'Prorata C 6'} — ${formatEuros(ligne.montant)}`}
>