Hi all,
We have tags on our site which are grouped in different levels. This causes that, when we go deep into these levels, we can't see their full names unless we hover them and the tooltip shows up.Chech the image attached. Is there any way to solve this or change the view? It's making some of the tag groups useless.
Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Okay @mjdavid007 , here is the working solution. Ask your developers to install attached package.
._coral-AssetList-item ._coral-AssetList-itemLabel{
text-overflow: initial;
white-space: initial;
}
tada....
Views
Replies
Total Likes
Definitely yes. Dont have a working example though. Previously have done coralUI clientlibs to customize console views.
Here is an example to customize the Tag picker https://experience-aem.blogspot.com/2018/12/aem-6420-alphabetically-sort-tags-in-tag-picker-column-v...
And another example to customize console view https://experience-aem.blogspot.com/2020/08/aem-6550-aem-assets-show-tags-in-list-view.html
Using these examples, have to build a clientlib to NOT ellipsis the tag title. Instead wrap.
Thanks for the reply. However, I don't know how to proceed or what to tell the developers with those...
Views
Replies
Total Likes
Okay @mjdavid007 , here is the working solution. Ask your developers to install attached package.
._coral-AssetList-item ._coral-AssetList-itemLabel{
text-overflow: initial;
white-space: initial;
}
tada....
HI @mjdavid007
I think you can achieve this via CSS, you need to create a custom clientlibs with category of 'granite.ui.coral.foundation.components'
.cq-tagadmin-admin-childpages ._coral-AssetList-item ._coral-AssetList-itemLabel {
text-overflow: unset;
overflow: auto;
white-space: break-spaces;
}
.cq-tagadmin-admin-childpages ._coral-AssetList-item{
height: auto;
min-height:40px
}
@mjdavid007 Just checking in — were you able to resolve your issue?
We’d love to hear how things worked out. If the suggestions above helped, marking a response as correct can guide others with similar questions. And if you found another solution, feel free to share it — your insights could really benefit the community. Thanks again for being part of the conversation!
Views
Replies
Total Likes
Views
Likes
Replies