pydici
pydici copied to clipboard
Impossible to reset the month of a detail row in a bill
trafficstars
- The delete button (X) is hidden behind the dropdown caret
- When deleting the value (by accessing the field with the TAB key), the month value is still set on the bill row after save
workaround: use delete key....
culprit is a fix ... (in pydici.css:407)
.select2-selection__clear {
margin-right: -15px !important;
}
Which is usefull to avoid to abusivelly shrink labels (ex. for consultant name column). One can add a hack to fix the hack by hiding the caret:
.select2-selection__arrow {
display:none !important;
}
Maybe worse than nothing :-(
fixed during bootstrap5 migration