summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParth Solanki[PASO] <paso@odoo.com>2025-02-07 16:49:48 +0530
committerParth Solanki[PASO] <paso@odoo.com>2025-02-08 02:20:59 +0000
commitcf9928f193f94aeadc5b4f603c3700e0c32d3d9d (patch)
tree0df0d9c95e5dbdb5731f026767470fb5a1f0aa54
parentdf9213eb44e83ea9f4c2f9bb83dae6baf36a0309 (diff)
[FIX] point_of_sale: lot-serial dialog in small ui
Before this commit: - Lot-serial dropdown not visible in the small UI. After this commit: - Displayed the lot-serial dropdown in the small UI. opw-4551161 closes odoo/odoo#196957 Signed-off-by: Vlad Stroia (vlst) <vlst@odoo.com>
-rw-r--r--addons/point_of_sale/static/src/app/store/select_lot_popup/edit_list_input/edit_list_input.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/addons/point_of_sale/static/src/app/store/select_lot_popup/edit_list_input/edit_list_input.scss b/addons/point_of_sale/static/src/app/store/select_lot_popup/edit_list_input/edit_list_input.scss
index 472f56651ee..c3e331b11f8 100644
--- a/addons/point_of_sale/static/src/app/store/select_lot_popup/edit_list_input/edit_list_input.scss
+++ b/addons/point_of_sale/static/src/app/store/select_lot_popup/edit_list_input/edit_list_input.scss
@@ -35,3 +35,9 @@
.pos .edit-list-inputs .options-dropdown .option:hover {
background-color: $gray-200;
}
+
+@media (max-width: 575px) {
+ .pos .edit-list-inputs .options-dropdown {
+ position: static;
+ }
+}