diff --git a/web_responsive/README.rst b/web_responsive/README.rst index d540bf953..3846f0fb0 100644 --- a/web_responsive/README.rst +++ b/web_responsive/README.rst @@ -113,6 +113,10 @@ Features for computers: .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_responsive/static/img/document_viewer.gif +* Bigger checkboxes in list view + + .. image:: https://raw.githubusercontent.com/OCA/web/13.0/web_responsive/static/img/big_checkboxes.gif + **Table of contents** .. contents:: diff --git a/web_responsive/__manifest__.py b/web_responsive/__manifest__.py index 201c66b17..fe0fc8cec 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.0", + "version": "13.0.2.6.1", "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 0acebb7a1..9acec14a9 100644 --- a/web_responsive/readme/DESCRIPTION.rst +++ b/web_responsive/readme/DESCRIPTION.rst @@ -85,3 +85,7 @@ Features for computers: width preview clicking on the new maximize button. .. image:: ../static/img/document_viewer.gif + +* Bigger checkboxes in list view + + .. image:: ../static/img/big_checkboxes.gif diff --git a/web_responsive/static/description/index.html b/web_responsive/static/description/index.html index fa43bbe71..8e840246e 100644 --- a/web_responsive/static/description/index.html +++ b/web_responsive/static/description/index.html @@ -438,6 +438,9 @@ part for side-by-side reading instead of full screen. You can still put it on fu width preview clicking on the new maximize button.

https://raw.githubusercontent.com/OCA/web/13.0/web_responsive/static/img/document_viewer.gif +
  • Bigger checkboxes in list view

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

    diff --git a/web_responsive/static/img/big_checkboxes.gif b/web_responsive/static/img/big_checkboxes.gif new file mode 100644 index 000000000..a3469203a Binary files /dev/null and b/web_responsive/static/img/big_checkboxes.gif differ diff --git a/web_responsive/static/src/css/web_responsive.scss b/web_responsive/static/src/css/web_responsive.scss index 58f8474ba..44af76c42 100644 --- a/web_responsive/static/src/css/web_responsive.scss +++ b/web_responsive/static/src/css/web_responsive.scss @@ -663,6 +663,28 @@ html .o_web_client .o_action_manager .o_action { } } +// Big checkboxes +.o_list_view { + .custom-checkbox:not(.o_boolean_toggle) { + margin-right: 10px; + + .custom-control-label { + top: -6px; + + &::after { + width: 24px; + height: 24px; + } + &::before { + outline: none !important; + border: 1px solid #4c4c4c; + width: 24px; + height: 24px; + } + } + } +} + // Waiting Cursor .oe_wait { cursor: progress;