This commit is contained in:
2026-02-26 14:46:09 +00:00
parent 83dc807640
commit c525e97fcb
2 changed files with 24 additions and 11 deletions

View File

@@ -1270,4 +1270,22 @@ select.selectpicker {
border: 1px solid #ced4da !important;
background-color: #fff !important;
font-size: 0.8rem !important;
}
/* Limite la largeur du menu déroulant quand il est attaché au body */
body > .bootstrap-select.dropdown {
max-width: 400px !important; /* Ajustez selon vos besoins */
width: auto !important;
}
/* Assure que la boîte de recherche reste compacte */
.bootstrap-select .dropdown-menu {
min-width: 100% !important;
max-width: 100% !important;
box-shadow: var(--shadow-lg);
}
/* Fix pour l'affichage plein écran */
.bootstrap-select.show {
width: 100% !important;
}