From ded6e53bcdb9c484f99779fffa20a37bc6d70c3c Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 9 Jun 2021 21:55:14 +0200 Subject: luci-mod-network: fix horizontal scrolling in the bridge vlan filter matrix Signed-off-by: Jo-Philipp Wich --- .../luci-mod-network/htdocs/luci-static/resources/tools/network.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js b/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js index 0515992abe..dcf4052ab9 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js @@ -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)); -- cgit v1.2.3