From a4fa8e21e080a25a37ff011fc747b38fd1a4e63f Mon Sep 17 00:00:00 2001 From: rmbh-odoo Date: Mon, 1 Jun 2026 16:05:46 +0530 Subject: [PATCH] [FIX] side_panel: autocomplete dropdown transparency issue on scroll Before this commit: - In commit 2f73242, the `bg-white` class was removed from the autocomplete search bar. - This made the search bar `transparent`, causing dropdown items to appear behind it and break the UI. After this commit: - Added a proper `popover` background for the search bar in addDomainSelector. - Ensured consistent styling and prevented items from showing behind the search bar. Task: 6254807 --- .../add_dimension_button/add_dimension_button.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/side_panel/pivot/pivot_layout_configurator/add_dimension_button/add_dimension_button.css b/src/components/side_panel/pivot/pivot_layout_configurator/add_dimension_button/add_dimension_button.css index bcb8435979..1034c40cbb 100644 --- a/src/components/side_panel/pivot/pivot_layout_configurator/add_dimension_button/add_dimension_button.css +++ b/src/components/side_panel/pivot/pivot_layout_configurator/add_dimension_button/add_dimension_button.css @@ -17,6 +17,9 @@ } .o-pivot-add-dimension-popover { + .pivot-dimension-search { + background-color: var(--os-popover-bg); + } .o-autocomplete-dropdown { padding-bottom: var(--os-menu-item-padding-vertical); .o-autocomplete-content {