From c12c469520de144b5f30382423255f9dc5210fc1 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Tue, 22 May 2018 20:57:45 +0300 Subject: [PATCH] [WebUI] Wrap addresses in history --- interface/js/app/history.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 4fa3d9e07..d686a50ca 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -236,7 +236,9 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "minWidth": 100 + "minWidth": 100, + "maxWidth": 200, + "word-wrap": "break-word" } }, { "name": "rcpt_mime", @@ -244,7 +246,9 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "minWidth": 100 + "minWidth": 100, + "maxWidth": 200, + "word-wrap": "break-word" } }, { "name": "subject", @@ -312,7 +316,9 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "minWidth": 100 + "minWidth": 100, + "maxWidth": 130, + "word-wrap": "break-word" } }]; } -- 2.39.5