Skrattoune / OpenRepairPlatform

OpenRepairPlatform is a web application based on Django designed to organizing collaborative and non-profits repair structures - Still in development
2 stars 0 forks source link

Les champs d'autocompletion du stock sont trop grands #22

Open nfavrod opened 2 years ago

nfavrod commented 2 years ago

Voir les captures d'écran de l'issue #21 image

Skrattoune commented 2 years ago

vient de openrepairplatform\inventory\templates\inventory\stuff_edit_form.html et plus précisément:

        {% bootstrap_field form.brand form_group_class="col-md-6" %}
        {% bootstrap_field form.model form_group_class="col-md-6" %}

origine du problème: image

c'est déclaré dans: image

du coup propose d'ajouter dans openrepairplatform\static\scss\openrepairplatform.scss

.select2-container{
  display: block !important ;
  z-index: 9999;
  width: 100% !important;
  min-width: 10em !important;
}
Skrattoune commented 2 years ago