[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:
parent
f5ba2d786c
commit
be7f379c1e
1 changed files with 5 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue