Tuesday, October 10, 2023
4 changes · master
Resolved issues and error corrections
This fixes an issue where pages with a search panel would automatically jump back to the top. Users now get consistent scrolling behavior whether or not a search panel is shown, making navigation less disruptive.
Original PR description
Before this commit, if a view contained a searchPanel the scrollbar went at the top automatically; now the behavior of the scrollbar in a view with or without a searchPanel is the same. task : 3503894 with help of @Arcasias --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adjusts how mentions are styled in Mail so they no longer unintentionally alter button styling elsewhere on the website. It also slightly improves mention readability by refining text and background contrast in light and dark themes.
Original PR description
Follow-up of https://github.com/odoo/odoo/pull/132701 `@extend` was used to reuse classnames intended for styling, such as `.btn`. However, this has the side-effect to increase specificity on these…
Follow-up of https://github.com/odoo/odoo/pull/132701 `@extend` was used to reuse classnames intended for styling, such as `.btn`. However, this has the side-effect to increase specificity on these classnames, which results in breaking style on the website where the specificity on `.btn` must not change. This commit fixes the issue by using a mixin rather than `@extend`. Since using these mixins are not equivalent, we took the opportunity to slightly improve the constrast of text color and background. Before/After (white)   Before/After (dark)  
This fixes a duplicated barcode test that was causing some nightly validation builds to fail. The change helps keep automated checks stable so releases and module updates are not delayed by a false test issue.
Original PR description
Task: 3290154 The nightly was failing during some single module build (website_sale, account, ...) https://runbot.odoo.com/web#id=25090&view_type=form&model=runbot.build.error&menu_id=405&cids=1 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The restaurant appointment floor screen now shows appointment names consistently, regardless of whether the appointment was created online or in the back office. This avoids confusing or incorrect labels for staff managing restaurant bookings.
Original PR description
Previously, an operation was done to retrieve the appointment name. This operation was needed because when the appointment was created in the front end, a prefix was added to it. The issue is that this prefix was not added when the appointment was created in the back end. The solution to remove the prefix from the appointment name will be done by the team that is responsible of the Event module.