[FIX] web_widget_numeric_step: list view column min width

Default width is too narrow for these fields in list views, which makes it uncomfortable to use in desktops.

@moduon MT-4472
This commit is contained in:
Jairo Llopis
2024-01-23 14:07:39 +00:00
parent a8149af6a2
commit 647a7bd488

View File

@@ -12,3 +12,11 @@
visibility: visible;
}
}
.o_numeric_step_cell {
// Default for old browsers
min-width: 15 * $btn-padding-x;
// Value hardcoded in `FIXED_FIELD_COLUMN_WIDTHS.float` + width of 2
// FontAwesome icons + 2 buttons * 2 horizontal paddings
min-width: calc(92px + 2ex + 4 * #{$btn-padding-x});
}