This commit is contained in:
KONE SOREL 2026-03-16 13:27:34 +00:00
parent 6873219574
commit 0eb725b56e
2 changed files with 35 additions and 16 deletions

View File

@ -1,5 +1,5 @@
<div id="div_trancheage_content" class="animate__animated animate__fadeIn"> <div id="div_trancheage_content" class="animate__animated animate__fadeIn">
<div class="row g-3"> <div class="row g-2">
<div id="div_prime_lien" class="col-lg-8"> <div id="div_prime_lien" class="col-lg-8">
<div class="table-responsive border rounded shadow-sm bg-white"> <div class="table-responsive border rounded shadow-sm bg-white">
<table id="tab_prime_categorie" class="table table-hover align-middle mb-0" style="font-size: 8pt;"> <table id="tab_prime_categorie" class="table table-hover align-middle mb-0" style="font-size: 8pt;">

View File

@ -1,16 +1,35 @@
<table class="table table-responsive table-condensed"> <div class="card border-0 shadow-sm mb-3 animate__animated animate__fadeIn">
<tbody> <div class="card-body p-3 bg-primary-ghost-light">
<tr> <div class="row align-items-center">
<td width="10%" class="required"><?= _("Type Tranche Âge")?></td> <div class="col-md-3">
<td > <label class="form-label small fw-bold text-muted text-uppercase mb-md-0">
<select class="form-control selectpicker" data-live-search="true" id="codeEnteteTrancheAge" NAME="codeEnteteTrancheAge" required AUTOCOMPLETE="OFF" autofocus onChange="javascript:trancheage();" style="font-size:12pt;"> <?= _("Catégorie Tranche d'Âge") ?> <span class="text-danger">*</span>
<?php liste_options($typesTranches,""); ?> </label>
</SELECT> </div>
</td> <div class="col-md-7">
<div class="input-group">
</tr> <span class="input-group-text bg-white border-2 border-end-0"><i class="fas fa-calendar-alt text-primary"></i></span>
</tbody> <select class="form-control selectpicker border-2 border-start-0 shadow-none"
</table> data-live-search="true"
<div id="div_trancheage" class="col-12"> id="codeEnteteTrancheAge"
name="codeEnteteTrancheAge"
required
onchange="trancheage();">
<?php liste_options($typesTranches, ""); ?>
</select>
</div>
</div>
</div>
</div>
</div> </div>
<div id="div_trancheage" class="mt-3"></div>
<style>
.bg-primary-ghost-light { background-color: rgba(33, 46, 83, 0.02) !important; }
/* Correction visuelle pour le selectpicker dans un input-group */
.bootstrap-select.form-control.border-2 {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
</style>