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:
@@ -1321,11 +1321,15 @@ export default function DsiOpex() {
|
|||||||
return (
|
return (
|
||||||
<th
|
<th
|
||||||
key={ligne.id}
|
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] ${
|
className={`text-right px-2 py-2 font-medium min-w-[90px] max-w-[110px] ${
|
||||||
isManuel
|
isManuel ? 'text-blue-700' : 'text-emerald-700'
|
||||||
? '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'
|
|
||||||
}`}
|
}`}
|
||||||
title={`${ligne.libelle} — ${isManuel ? 'Saisie manuelle' : 'Prorata C 6'} — ${formatEuros(ligne.montant)}`}
|
title={`${ligne.libelle} — ${isManuel ? 'Saisie manuelle' : 'Prorata C 6'} — ${formatEuros(ligne.montant)}`}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user