Skip to content
Snippets Groups Projects
Commit 27c32441 authored by jvm-odoo's avatar jvm-odoo
Browse files

[FIX] web: fix kanban tags overflow


Issue

	- Install Contacts
	- Add a tag on a contact like:
	  "LongTagName_Forcepaymentcomplement"
	  and give it a color
	- Go back to kanban view
	- Resize your window

	With some sizes, the tag gets out of
	the kanban box

Cause

	The tag is moved under the color ball
	when it is too long with some resolution

	But there is others resolutions where
	the tag is too long even if it is moved
	to the next line

Solution

	Add word-break: all which will force the
	tags to break if it is too long.

OPW-2251780

closes odoo/odoo#51243

X-original-commit: 2ac6a8f2
Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
Signed-off-by: default avatarJason Van Malder (jvm) <jvm@odoo.com>
parent 2b8e405d
Branches
Tags
No related merge requests found
......@@ -261,6 +261,7 @@
display: block;
margin-bottom: $o-kanban-inner-hmargin;
line-height: 1.2;
word-break: break-all;
.o_tag {
display: inline-block;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment