diff --git a/web_responsive/README.rst b/web_responsive/README.rst index 3846f0fb0..f0196628e 100644 --- a/web_responsive/README.rst +++ b/web_responsive/README.rst @@ -117,6 +117,10 @@ Features for computers: .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_responsive/static/img/big_checkboxes.gif +* Scrollable dropdowns + + .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_responsive/static/img/dropdown_scroll.gif + **Table of contents** .. contents:: diff --git a/web_responsive/__manifest__.py b/web_responsive/__manifest__.py index 63d29b07c..d6f416e10 100644 --- a/web_responsive/__manifest__.py +++ b/web_responsive/__manifest__.py @@ -6,7 +6,7 @@ { "name": "Web Responsive", "summary": "Responsive web client, community-supported", - "version": "13.0.2.6.2", + "version": "13.0.2.6.4", "category": "Website", "website": "https://github.com/OCA/web", "author": "LasLabs, Tecnativa, " "Odoo Community Association (OCA)", diff --git a/web_responsive/readme/DESCRIPTION.rst b/web_responsive/readme/DESCRIPTION.rst index 9acec14a9..87a1b3dc8 100644 --- a/web_responsive/readme/DESCRIPTION.rst +++ b/web_responsive/readme/DESCRIPTION.rst @@ -89,3 +89,7 @@ Features for computers: * Bigger checkboxes in list view .. image:: ../static/img/big_checkboxes.gif + +* Scrollable dropdowns + + .. image:: ../static/img/dropdown_scroll.gif diff --git a/web_responsive/static/description/index.html b/web_responsive/static/description/index.html index 8e840246e..7d6ba5fe7 100644 --- a/web_responsive/static/description/index.html +++ b/web_responsive/static/description/index.html @@ -441,6 +441,9 @@ width preview clicking on the new maximize button.

  • Bigger checkboxes in list view

    https://raw.githubusercontent.com/OCA/web/13.0/web_responsive/static/img/big_checkboxes.gif
  • +
  • Scrollable dropdowns

    +https://raw.githubusercontent.com/OCA/web/13.0/web_responsive/static/img/dropdown_scroll.gif +
  • Table of contents

    diff --git a/web_responsive/static/img/dropdown_scroll.gif b/web_responsive/static/img/dropdown_scroll.gif new file mode 100644 index 000000000..9f3b6c092 Binary files /dev/null and b/web_responsive/static/img/dropdown_scroll.gif differ diff --git a/web_responsive/static/src/css/web_responsive.scss b/web_responsive/static/src/css/web_responsive.scss index 98a543f31..683eb8700 100644 --- a/web_responsive/static/src/css/web_responsive.scss +++ b/web_responsive/static/src/css/web_responsive.scss @@ -784,8 +784,8 @@ html .o_web_client .o_action_manager .o_action { } } -// Filter Menu .o_control_panel { + // Filter Menu item .o_filters_menu { .o_menu_item { @include o-search-options-dropdown-custom-item; @@ -796,4 +796,11 @@ html .o_web_client .o_action_manager .o_action { } } } + + // Enable scroll on dropdowns + .o_cp_buttons .dropdown-menu { + max-height: 70vh; + overflow-y: auto; + overflow-x: hidden; + } }