petite amélioration cosmétique
FossilOrigin-Name: ecd15c4fa074ff5c85aa828c58b9cafcd1e10cdd62389759e2f421fb38b047c9
This commit is contained in:
parent
1d6225ae6d
commit
e509995c13
|
@ -22,10 +22,20 @@ span.montant {
|
|||
width : 5em;
|
||||
text-align : right;
|
||||
}
|
||||
span.total
|
||||
{
|
||||
font-weight : bold;
|
||||
}
|
||||
summary.activite {
|
||||
background: rgba(var(--gMainColor), 0.25);
|
||||
margin-bottom : 0.5em;
|
||||
}
|
||||
summary.personne
|
||||
{
|
||||
margin-bottom : 0.5em;
|
||||
}
|
||||
h3.personne, h4.personne {
|
||||
font-weight : normal;
|
||||
background: rgba(var(--gSecondColor), 0.15);
|
||||
}
|
||||
#signature
|
||||
|
|
|
@ -100,7 +100,7 @@ $tpl->register_function('afficher_debut_personne', function ($params)
|
|||
$idVersement = $versement->idTarif . "_" . $versement->idUser;
|
||||
$out = '<details class="personne" open="open">
|
||||
<summary class="personne">';
|
||||
$out .= sprintf('<h4 class="personne">Versements de %s : <span id="total_%s">0,00 €</span></h>',
|
||||
$out .= sprintf('<h4 class="personne">Versements de %s : <span class="total" id="total_%s">0,00 €</span></h>',
|
||||
$personne->nomPrenom,
|
||||
$idVersement);
|
||||
$out .= '</summary>';
|
||||
|
|
|
@ -43,7 +43,7 @@ $tpl->register_function('afficher_debut_personne', function ($params)
|
|||
$idVersement = $versement->idUser;
|
||||
$out = '<details class="personne" open="open">
|
||||
<summary class="personne">';
|
||||
$out .= sprintf('<h4 class="personne">Versements de %s : <span id="total_%s">0,00 €</span></h4>',
|
||||
$out .= sprintf('<h4 class="personne">Versements de %s : <span class="total" id="total_%s">0,00 €</span></h4>',
|
||||
$personne->nomPrenom,
|
||||
$idVersement);
|
||||
$out .= '</summary>';
|
||||
|
|
Loading…
Reference in New Issue