From 16941b8183474a2d7246ead7730fb7f8a4e6cb15 Mon Sep 17 00:00:00 2001 From: GitHub Copilot Date: Thu, 28 May 2026 19:32:20 +0200 Subject: [PATCH] [IMP] stock_picking_batch_custom: increase quantity column size for touch usability Co-Authored-By: Claude Sonnet 4.6 --- .../static/src/css/stock_picking_batch.css | 5 +++-- 1 file changed, 3 insertions(+), 2 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 bfe3b0a..75431d9 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 @@ -11,9 +11,10 @@ table.o_list_table tbody tr.o_data_row:hover td { /* Widen the quantity column in detailed operations so it is easier to tap */ table.o_batch_move_line_list th[data-name="quantity"], table.o_batch_move_line_list td[name="quantity"] { - min-width: 100px; + min-width: 140px; } table.o_batch_move_line_list td[name="quantity"] .o_field_widget input { - min-height: 36px; + min-height: 44px; + font-size: 1.1rem; }