36 lines
1.5 KiB
PHP
Executable File
36 lines
1.5 KiB
PHP
Executable File
<div class="card border-0 shadow-sm mb-3 animate__animated animate__fadeIn">
|
|
<div class="card-body p-3 bg-primary-ghost-light">
|
|
<div class="row align-items-center">
|
|
<div class="col-md-3">
|
|
<label class="form-label small fw-bold text-muted text-uppercase mb-md-0">
|
|
<?= _("Catégorie Tranche d'Âge") ?> <span class="text-danger">*</span>
|
|
</label>
|
|
</div>
|
|
<div class="col-md-7">
|
|
<div class="input-group">
|
|
<span class="input-group-text bg-white border-2 border-end-0"><i class="fas fa-calendar-alt text-primary"></i></span>
|
|
<select class="form-control selectpicker border-2 border-start-0 shadow-none"
|
|
data-live-search="true"
|
|
id="codeEnteteTrancheAge"
|
|
name="codeEnteteTrancheAge"
|
|
required
|
|
onchange="trancheage();">
|
|
<?php liste_options($typesTranches, ""); ?>
|
|
</select>
|
|
</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>
|