Wednesday, June 3, 2020
3 changes · master
Enhancements to existing features
List view buttons now have a small amount of added spacing between them. This makes the controls easier to distinguish and improves clarity for users working in lists.
Original PR description
A slight margin has been added between list view buttons to improve clarity.
The job description feature snippet has been visually simplified by removing borders and background colors from its columns. This creates a cleaner, less cluttered presentation for job pages and helps applicants focus on the content.
Original PR description
Remove borders/background-color in columns of the features snippet in job description. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Popovers are now easier and more reliable to use: they can be closed from within, toggled by clicking their target, and styled differently when open. The update also reduces display flicker, improves sizing for content, and helps prevent overlap with other interface elements.
Original PR description
Close can now be requested by children (slot content) with the event `o-popover-close`. This feature is necessary if we want a "close" button inside the popover itself, which is the case for mail.activity "Mark Done". Clicking on the popover target now acts as a toggle, which is also a feature that was expected from the previous popover implementation. Add a specific class (`o_is_open`) when the popover is displayed to be able to style its target depending on whether it is displayed or not. Ensure computed position is whole number of pixels to prevent flicker issue on Firefox. Remove forced width to let the component grow with its content. Add appropriate z-index to prevent overlap issue with the rest of our interface.