pydici icon indicating copy to clipboard operation
pydici copied to clipboard

Impossible to reset the month of a detail row in a bill

Open tuxella opened this issue 7 years ago • 2 comments
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
screen shot 2018-09-06 at 11 31 33

tuxella avatar Sep 06 '18 09:09 tuxella

workaround: use delete key....

digitalfox avatar Jan 31 '20 17:01 digitalfox

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 :-(

digitalfox avatar Jan 31 '20 17:01 digitalfox

fixed during bootstrap5 migration

digitalfox avatar Feb 13 '23 07:02 digitalfox