[FIX] stock_picking_batch_custom: fix is_collected toggle clipping in operator view

Replace transform: scale() (which clips at parent boundaries) with direct
width/height on the form-check-input element so the switch grows without overflow.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
GitHub Copilot 2026-05-29 19:37:09 +02:00
parent f5ba2d786c
commit be7f379c1e

View file

@ -47,10 +47,12 @@ table.o_list_table tbody tr.o_data_row:hover td {
}
.o_batch_operator_list td[name="is_collected"] {
min-width: 80px;
min-width: 90px;
text-align: center;
}
.o_batch_operator_list td[name="is_collected"] .o_field_widget {
transform: scale(1.4);
.o_batch_operator_list td[name="is_collected"] .form-check-input {
width: 2.8em;
height: 1.5em;
cursor: pointer;
}