From 7f462045a400034dba3feaeb4240a2e9a8ba15ed Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 5 Oct 2017 09:34:48 +0200 Subject: [PATCH] .table-responsive -> .table-responsive-sm --- skins/elastic/ui.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js index ab9fc7ccb..654ad67fe 100644 --- a/skins/elastic/ui.js +++ b/skins/elastic/ui.js @@ -539,7 +539,8 @@ function rcube_elastic_ui() // Make tables pretier, FIXME: these classes do not work on the current Bootstrap build as they should $('table:not(.propform):not(.listing)').each(function() { if (!$(this).parent().is('.propform')) { - $(this).addClass('table table-responsive').find('thead').addClass('thead-default'); + // TODO: Consider implementing automatic setting of table-responsive on window resize + $(this).addClass('table table-responsive-sm').find('thead').addClass('thead-default'); } });