From 483c4ad5a7b6a86210593dfa4db5d5b5aec026cc Mon Sep 17 00:00:00 2001 From: GitHub Copilot Date: Fri, 29 May 2026 19:04:20 +0200 Subject: [PATCH] [FIX] stock_picking_batch_custom: apply quantity font size/weight to td directly In read mode the value is plain text inside with no widget wrapper, so font-size and font-weight must target the td itself, not only .o_field_widget input (edit mode only). Co-Authored-By: Claude Sonnet 4.6 --- .../static/src/css/stock_picking_batch.css | 3 +++ 1 file changed, 3 insertions(+) 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 f674d7a..a8f6bd1 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 @@ -29,6 +29,9 @@ table.o_batch_operator_list tbody tr.o_data_row td { table.o_batch_operator_list th[data-name="quantity"], table.o_batch_operator_list td[name="quantity"] { min-width: 130px; + font-size: 1.5rem; + font-weight: 700; + text-align: center; } table.o_batch_operator_list td[name="quantity"] .o_field_widget input {