[FIX] stock_picking_batch_custom: apply quantity font size/weight to td directly
In read mode the value is plain text inside <td name="quantity"> 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 <noreply@anthropic.com>
This commit is contained in:
parent
591dd5f2b2
commit
483c4ad5a7
1 changed files with 3 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue