Skip to content
Snippets Groups Projects
Commit a51e8e4b authored by Uma's avatar Uma
Browse files

Merge branch 'fix_1437' into '7.4.0'

Fix for #1437 - 7.3 beta: No text wrapping in related list

To apply ellipses you need to have constraint on width of the container. Because this was missing, content was taking width upto 80% of the table cell.

See merge request !747
parents 190b2e3d bb21be8b
No related branches found
No related tags found
2 merge requests!802Field Mapping ID fix,!793#1533 issue on date formate
......@@ -1656,7 +1656,8 @@ ul.unstyled{
.listViewEntries .relatedListEntryValues .value{
vertical-align: middle;
width: 80%;
display: inline-block;
display: inline-block;
max-width: 300px;
}
.floatThead-table{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment