20.02.2024, 11:52 
		
	
	
		Add to Custom JavaScript:
Then set "Additional classes" to limit-text for each element where text width must be limited to the icon width.
	
	
	
Code:
$(function(){
  $('.limit-text').each(function(index, el) {
    var width = $(el).find('img').css('width')
    if (width) {
      $(el).find('.value')
        .css('width', width)
        .css('overflow', 'hidden')
          .css('text-overflow', 'ellipsis')
    }
  });
});Then set "Additional classes" to limit-text for each element where text width must be limited to the icon width.