luci-mod-network: fix horizontal scrolling in the bridge vlan filter matrix
authorJo-Philipp Wich <jo@mein.io>
Wed, 9 Jun 2021 19:55:14 +0000 (21:55 +0200)
committerJo-Philipp Wich <jo@mein.io>
Wed, 9 Jun 2021 19:55:43 +0000 (21:55 +0200)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js

index 0515992abe6265bed859e568bc28c6dcf588fe31..dcf4052ab923d7a0627bafbde2f21453a995df33 100644 (file)
@@ -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));