keep a minimum of 8px
This commit is contained in:
parent
39229c99a3
commit
cebfedfdd4
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue