From: Jo-Philipp Wich Date: Wed, 9 Jun 2021 19:55:14 +0000 (+0200) Subject: luci-mod-network: fix horizontal scrolling in the bridge vlan filter matrix X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ded6e53bcdb9c484f99779fffa20a37bc6d70c3c;p=openwrt-luci.git luci-mod-network: fix horizontal scrolling in the bridge vlan filter matrix Signed-off-by: Jo-Philipp Wich --- 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));