[IMP] stock_picking_batch_custom: UX - zebra rows, mostrar categoría a la izquierda, company+uom ocultables, añadir CSS assets
This commit is contained in:
parent
1d4971c803
commit
1b20b23fc0
2 changed files with 29 additions and 1 deletions
|
|
@ -0,0 +1,18 @@
|
|||
/* zebra striping for list views in this module */
|
||||
|
||||
/* Target Odoo list/tree view tables. Use a specific, but broad selector to
|
||||
avoid interfering globally with other modules. */
|
||||
.o_list_view .o_list_view_table tbody tr:nth-child(even) td {
|
||||
background-color: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
|
||||
/* Slight hover contrast to improve row focus */
|
||||
.o_list_view .o_list_view_table tbody tr:hover td {
|
||||
background-color: rgba(0, 0, 0, 0.045);
|
||||
}
|
||||
|
||||
/* Ensure checkboxes / toggle columns maintain contrast */
|
||||
.o_list_view .o_list_view_table tbody tr:nth-child(even) td .o_field_widget,
|
||||
.o_list_view .o_list_view_table tbody tr:nth-child(even) td .o_field_widget * {
|
||||
background: transparent;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue