keep a minimum of 8px

This commit is contained in:
j 2020-04-28 21:26:22 +02:00
parent 39229c99a3
commit cebfedfdd4

View file

@ -206,7 +206,7 @@ Ox.TableList = function(options, self) {
.addClass('OxHead')
.css({
right: self.options.scrollbarVisible
? Ox.UI.SCROLLBAR_SIZE + 'px' : 0
? Math.max(Ox.UI.SCROLLBAR_SIZE, 8) + 'px' : 0
})
.appendTo(that.$bar);
that.$head.$content.addClass('OxTitles');