Saturday, April 19, 2025
3 changes · saas-18.2
Resolved issues and error corrections
The “edited” marker shown on changed messages is now smaller and easier to distinguish from the actual message text. This makes conversations cleaner and improves readability, especially in browsers where the old italic styling could display poorly.
Original PR description
The message "(edited)" label had the following issues: - it looked too similar to message text content, notably the font-size - italics is harder to read and is prone to cut at end of text on Gecko rendering engine This commit fixes the issue by reducing the size of this label, no italics, normal weight. Opacity matches with other items in message list of similar level of importance such as datetime. Before / After <img width="243" alt="Screenshot 2025-04-18 at 22 00 02" src="https://github.com/user-attachments/assets/26b104a1-8620-4406-b380-f8c0839547e8" /> <img width="236" alt="Screenshot 2025-04-18 at 22 00 27" src="https://github.com/user-attachments/assets/54268752-b2a8-40b0-8296-4d2cbc3bb173" />
The Discuss call interface now keeps participant overlay icons proportional in small call views, reducing clutter and making video or screen sharing easier to see. It also corrects a dark mode background color issue for a cleaner visual experience.
Original PR description
Before this commit, in small call views, the overlay of participant cards was taking too much space and made the UI feel too cluttered while hiding the camera/screen of participants. This commit fixes this issue by making the icons proportional to their containers. This commit also fixes an improper dynamic background color in dark mode. | Before | After | |--------|--------| |  |  | |  |  |
The mail call view now uses a smaller outer margin to create a subtler floating effect. This improves the visual balance of calls in the interface without changing how users interact with the feature.
Original PR description
Follow-up of https://github.com/odoo/odoo/pull/206260 PR above improve style of call view with some spacing around it which looks better. However, the spacing was too big even though it uses the minimum `.mx-1.mt-1` of 4px. The 4px spacing is in many cases the minimum desired to see spacing between 2 elements, but here the intent is to give a container a slight visual floating effect. The 4px is appropriate to show item next to each other but 2px is best to simulate floating effect. This commit improves by reducing the spacing by half their value. Before <img width="401" alt="Screenshot 2025-04-18 at 21 42 46" src="https://github.com/user-attachments/assets/5260080f-3759-4083-861d-ec6727800d0e" /> After <img width="409" alt="Screenshot 2025-04-18 at 21 41 42" src="https://github.com/user-attachments/assets/2a90bd9f-9ed9-48b7-927b-a64812706fb7" />