Skip to content
Snippets Groups Projects
Commit 714c0edc authored by Didier (did)'s avatar Didier (did)
Browse files

[FIX] mail: fix placeholder scrollbar with long name


Currently, Chrome show a scrollbar when the placeholder is multilined.
Overflow hidden will avoid the scrollbar and we place a nowrap on the
placeholder text to avoid the multiline.

task-2416058

closes odoo/odoo#65213

X-original-commit: dfbbb18f39f5e546bb8bea34e395bdf1c1b49dab
Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
parent 3f8088aa
Branches
Tags
No related merge requests found
......@@ -22,6 +22,12 @@
border: none;
overflow: auto;
&::placeholder {
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
}
&.o-composer-is-compact {
// When composer is compact, textarea should not be rounded on the right as
// buttons are glued to it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment