From c4da0db178622471624a8a478162ec615e06368c Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Tue, 4 Apr 2017 18:20:32 +0300 Subject: [PATCH] [WebUI] Save some history table space --- interface/css/rspamd.css | 8 ++++++++ interface/js/app/history.js | 18 ++++++++---------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index c86727960..3a4dd26c0 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -152,6 +152,14 @@ input.action-scores { background-image:url('../img/desc.png'); } +#historyTable > tbody > tr > td, +#historyTable > thead > tr > th { + padding: 4px; +} +#historyTable > thead > tr > th { + padding-right: 20px; +} + .btn-upload-trigger { position:relative; z-index:1; diff --git a/interface/js/app/history.js b/interface/js/app/history.js index c3f7ae352..4c1e75ce8 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -93,7 +93,7 @@ function($, _, Humanize) { "sortValue": item.unix_time } }; - var scan_time = item.time_real.toFixed(3) + '/' + + var scan_time = item.time_real.toFixed(3) + ' / ' + item.time_virtual.toFixed(3); item.scan_time = { "options": { @@ -140,7 +140,7 @@ function($, _, Humanize) { "title": "ID", "style": { "font-size": "11px", - "width": 200, + "minWidth": 130, "maxWidth": 200, "overflow": "hidden", "textOverflow": "ellipsis", @@ -153,7 +153,7 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "minWidth": 150 + "minWidth": 88 } }, { "name": "sender_mime", @@ -187,8 +187,7 @@ function($, _, Humanize) { "title": "Action", "style": { "font-size": "11px", - "width": 110, - "maxWidth": 110 + "minwidth": 82 } }, { "name": "score", @@ -209,12 +208,11 @@ function($, _, Humanize) { } }, { "name": "size", - "title": "Message size", + "title": "Msg size", "breakpoints": "xs sm md", "style": { "font-size": "11px", - "width": 90, - "maxWidth": 110 + "minwidth": 50, }, "formatter": Humanize.compactInteger }, { @@ -223,7 +221,7 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "maxWidth": 120 + "maxWidth": 72 }, "sortValue": function(val) { return Number(val.options.sortValue); } }, { @@ -241,7 +239,7 @@ function($, _, Humanize) { "breakpoints": "xs sm md", "style": { "font-size": "11px", - "minWidth": 150 + "minWidth": 100 } }]; } -- 2.39.5