Ajout totaux dans les onglets Amortissables, Amorties et En cours

This commit is contained in:
Jean-Christophe Engel 2025-11-25 13:53:21 +01:00
parent 900b0f5a47
commit 3e9f215816
4 changed files with 119 additions and 4 deletions

View file

@ -31,7 +31,7 @@ h2[class="aide"], h3[class="aide"] {
}
.informations dt::after {
content: ' :';
content: ' : ';
}
.informations dl.describe > dt {
@ -39,7 +39,6 @@ h2[class="aide"], h3[class="aide"] {
}
.informations dl.describe > dd {
margin-left: 0;
margin-right: 0;
}
@ -52,3 +51,31 @@ fieldset.shortFormLeft div.informations {
background: rgba(var(--gSecondColor), 0.2);
border-radius: .5em;
}
span.strong {
font-weight: bold;
}
aside.totals {
float : left;
width : 30em;
}
aside.totals dl.describe {
display: flex;
}
aside.totals dl.describe dt {
text-align : right;
flex : 0 0 20rem;
}
aside.totals dl.describe dt::after {
content: ' : ';
}
aside.totals dl.describe dd {
flex : 0 0 calc(100% - 25rem);
text-align : right;
}