Skip to content
Snippets Groups Projects
Commit 569d35bc authored by xO-Tx's avatar xO-Tx
Browse files

[FIX] mail: fix emoji menu position/overflow issues (on mobile screen) and...

[FIX] mail: fix emoji menu position/overflow issues (on mobile screen) and emojis display (for different OSes > browsers)

This commit attempts to fix the emoji widget position issue (only in enterprise versions) on mobile screen.
The emoji dropdown overflow & emojis font display issues (on mobile screen) are also fixed in this commit.

The following changes have been made :

1- Add css media-breakpoint to override widget position in small breakpoint and narrower.
2- Add position-relative + bottom css on widgets to avoid negative margins.
3- Set a max-width for the dropdown on mobile screen.
4- Add width/height on emoji icons to solve emojis position issue for some fonts (on different OSes > browsers).

This fix was made with the 'smallest possible changes' taking in consideration effects on :

- "text_emojis" widgets, since they use same class : "o_mail_emojis_dropdown".
- Emoji widget position in community (This fix won't break widget position in community version).

Task ID 2224393

closes odoo/odoo#52182

X-original-commit: 405e113e897b914eed41b34a66b5a7f740dcd336
Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
parent 3f84da3a
Branches
Tags
No related merge requests found
......@@ -5,7 +5,8 @@
.o_mail_emoji {
cursor: pointer;
padding: 2px;
width: 25px;
height: 25px;
@include hover-focus() {
background-color: grey('100');
}
......@@ -17,7 +18,7 @@
height: 25px;
width: 40px;
float: right;
margin-top: -33px;
bottom: 33px;
* {
outline: none!important;
......@@ -37,5 +38,21 @@
}
.o_mail_emojis_dropdown_textarea{
margin-top: -40px;
bottom: 40px;
}
@include media-breakpoint-down(sm) {
// This will fix the position issue for emoji widget on mobile screen.
.o_mail_emojis_dropdown {
bottom: 50px;
}
.o_mail_emojis_dropdown_textarea {
bottom: 40px;
}
.o_mail_add_emoji {
.dropdown-menu {
// This will fix the overflow issue for emoji dropdown on mobile screen by setting a max-width.
max-width: 320px;
}
}
}
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<div t-name="mail.EmojisDropdown" class="o_mail_emojis_dropdown o_mail_add_emoji dropdown">
<div t-name="mail.EmojisDropdown" class="o_mail_emojis_dropdown o_mail_add_emoji dropdown position-relative">
<button class="btn btn-block dropdown-toggle px-3 py-1"
type="button"
data-toggle="dropdown"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment