This commit is contained in:
KONE SOREL 2025-12-24 18:34:25 +00:00
parent 10bc72dd93
commit 678887f9e7
4 changed files with 11 additions and 5 deletions

View File

@ -318,7 +318,6 @@ body {
font-size: 16px; font-size: 16px;
} }
/* Content card */ /* Content card */
.content-card { .content-card {
background: var(--office-card); background: var(--office-card);
@ -327,6 +326,12 @@ body {
margin-top: 8px; /* Ajout pour rapprocher visuellement la carte de la nav-bar */ margin-top: 8px; /* Ajout pour rapprocher visuellement la carte de la nav-bar */
} }
.content-area {
padding: calc(var(--header-height) + 56px) 24px 24px 24px; /* supprime le +8px */
max-width: 1400px;
margin: 0 auto;
}
/* Sidebar collapsée (tablette) */ /* Sidebar collapsée (tablette) */
@media (max-width: 1200px) { @media (max-width: 1200px) {

View File

@ -77,13 +77,10 @@ class ControleurAccueil extends Controleur {
'kpis' => $kpis, 'kpis' => $kpis,
'activities' => $activities, 'activities' => $activities,
'alerts' => $alerts, 'alerts' => $alerts,
'claimsLabels' => $claimsLabels,
'claimsValues' => $claimsValues,
'months' => $months, 'months' => $months,
'monthlyCotisations' => $monthlyCotisations, 'monthlyCotisations' => $monthlyCotisations,
'lossRatioLabels' => $lossRatioLabels, 'lossRatioLabels' => $lossRatioLabels,
'lossRatioValues' => $lossRatioValues, 'lossRatioValues' => $lossRatioValues,
'dataTabClaims' => $dataTabClaims 'dataTabClaims' => $dataTabClaims
) )
); );

View File

@ -39,6 +39,10 @@
<span><?= _('Montant') ?> :</span> <span><?= _('Montant') ?> :</span>
<strong><?= format_N($kpis["fraisReel"]).' '.$_SESSION['devise_C'] ?></strong> <strong><?= format_N($kpis["fraisReel"]).' '.$_SESSION['devise_C'] ?></strong>
</div> </div>
<div class="sub-item">
<span><?= _('Sinistralité') ?> :</span>
<strong><?= $kpis["rapportSp"].'%' ?></strong>
</div>
</div> </div>
</div> </div>
</div> </div>

View File

@ -145,7 +145,7 @@ console.groupEnd();
<link rel="manifest" href="<?= $racineWeb ?>manifest.json"> <link rel="manifest" href="<?= $racineWeb ?>manifest.json">
<!-- 4. VOS STYLES PERSONNALISÉS (en dernier pour qu'ils dominent) --> <!-- 4. VOS STYLES PERSONNALISÉS (en dernier pour qu'ils dominent) -->
<link href="<?= $racineWeb ?>Bootstrap_new/css/style_office.css?ver=2025.12.24.03" rel="stylesheet"> <link href="<?= $racineWeb ?>Bootstrap_new/css/style_office.css?ver=2025.12.24.04" rel="stylesheet">
<link href="<?= $racineWeb ?>Bootstrap_new/css/ux_enhancements.css?ver=2025.12.21.02" rel="stylesheet"> <link href="<?= $racineWeb ?>Bootstrap_new/css/ux_enhancements.css?ver=2025.12.21.02" rel="stylesheet">
<!-- ============================================ <!-- ============================================