diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-05-22 20:57:45 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-05-22 20:57:45 +0300 |
commit | c12c469520de144b5f30382423255f9dc5210fc1 (patch) | |
tree | 692c8ad743709969c11c346e67ecb1b5822c9885 /interface | |
parent | b6156175b6e0e9a1d8063571f81c428f4aac570f (diff) | |
download | rspamd-c12c469520de144b5f30382423255f9dc5210fc1.tar.gz rspamd-c12c469520de144b5f30382423255f9dc5210fc1.zip |
[WebUI] Wrap addresses in history
Diffstat (limited to 'interface')
-rw-r--r-- | interface/js/app/history.js | 12 |
1 files 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" } }]; } |