Code rewriting and improve of P0RAP for linked operations

This commit is contained in:
sparkyx 2025-06-21 18:48:23 +02:00
parent a48140d3cc
commit 4a0c11d6c7
6 changed files with 735 additions and 580 deletions

View file

@ -3952,3 +3952,44 @@ h2.h-section {
.nav-pills {
font-family:var(--font-title) !important;
}
/**
* Style for ACC_RECONCILIATION P0RAP
*/
.rpm_main {
display:grid;
grid-template-columns:1fr ;
row-gap: 0.5rem;
}
.rpm_operation {
display:grid;
grid-template-columns:10rem 10rem 10rem 10rem 1fr 1fr ;
}
.rpm_title {
color:white;
background-color: navy;
}
.rpm_detail {
justify-self: stretch;
grid-column: 1 / span 6;
}
.rpm_detail > table {
width:90%;
margin-left:5%;
}
.rpm_detail > .highlight {
font-size: 130%;
font-stretch: extra-expanded;
color:blue;
margin-left:min(40rem,20%);
border: 1px navy dotted;
width: max(60%,40rem);
padding: 0.2rem;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
border-radius: 5px;
}