luci-mod-network: fix horizontal scrolling in the bridge vlan filter matrix
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
e3bf521edb
commit
ded6e53bcd
1 changed files with 1 additions and 3 deletions
|
@ -789,9 +789,7 @@ return baseclass.extend({
|
|||
o.renderWidget = function(/* ... */) {
|
||||
return form.SectionValue.prototype.renderWidget.apply(this, arguments).then(L.bind(function(node) {
|
||||
node.style.overflowX = 'auto';
|
||||
node.style.overflowY = 'visible';
|
||||
node.style.paddingBottom = '100px';
|
||||
node.style.marginBottom = '-100px';
|
||||
node.style.overflowY = 'hidden';
|
||||
|
||||
return node;
|
||||
}, this));
|
||||
|
|
Loading…
Reference in a new issue