Comprends

This commit is contained in:
KONE SOREL 2025-12-29 10:12:52 +00:00
parent 36ef595c6b
commit 0f20b3d9e1
2 changed files with 14 additions and 20 deletions

View File

@ -687,29 +687,23 @@ body {
font-weight: 600; font-weight: 600;
} }
/* Patch global pour forcer le modal au-dessus de tout */ /* Ne pas toucher à display: Bootstrap gère. */
body.modal-open { /* Monter le modal uniquement quand il est visible */
overflow: hidden !important; .modal.show {
position: fixed;
z-index: 2000; /* au-dessus de vos éléments fixes */
} }
/* Backdrop toujours derrière le modal */ /* Backdrop juste en dessous, uniquement quand visible */
.modal-backdrop { .modal-backdrop.show {
position: fixed !important; position: fixed;
z-index: 9998 !important; z-index: 1999;
} }
/* Modal lui-même */ /* Si certains contenus internes sont recouverts, montez-les aussi */
.modal { .modal.show .modal-dialog,
position: fixed !important; .modal.show .modal-content {
z-index: 9999 !important; z-index: 2000;
display: block !important;
}
/* Dialog et contenu */
.modal-dialog,
.modal-content {
position: relative !important;
z-index: 10000 !important;
} }
/* ============================================ /* ============================================

View File

@ -119,7 +119,7 @@ $activeChildId = $menuData['child'];
<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.29.05" rel="stylesheet"> <link href="<?= $racineWeb ?>Bootstrap_new/css/style_office.css?ver=2025.12.29.06" 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">
<!-- ============================================ <!-- ============================================