From be7f379c1ecd9034a671b87b571a206cee826c40 Mon Sep 17 00:00:00 2001 From: GitHub Copilot Date: Fri, 29 May 2026 19:37:09 +0200 Subject: [PATCH] [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 --- .../static/src/css/stock_picking_batch.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/stock_picking_batch_custom/static/src/css/stock_picking_batch.css b/stock_picking_batch_custom/static/src/css/stock_picking_batch.css index fcbad0d..eada54e 100644 --- a/stock_picking_batch_custom/static/src/css/stock_picking_batch.css +++ b/stock_picking_batch_custom/static/src/css/stock_picking_batch.css @@ -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; }