.table-responsive -> .table-responsive-sm

pull/5742/merge
Aleksander Machniak 7 years ago
parent b1b708408b
commit 7f462045a4

@ -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 // Make tables pretier, FIXME: these classes do not work on the current Bootstrap build as they should
$('table:not(.propform):not(.listing)').each(function() { $('table:not(.propform):not(.listing)').each(function() {
if (!$(this).parent().is('.propform')) { 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');
} }
}); });

Loading…
Cancel
Save