diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-06-09 21:55:14 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-06-09 21:55:43 +0200 |
commit | ded6e53bcdb9c484f99779fffa20a37bc6d70c3c (patch) | |
tree | 83b9c4fc5a0d1db1e2e6d89e9a8649a9fee7c4a5 | |
parent | e3bf521edbd0c6f59aba9aa9a89a9d96e1da3fd2 (diff) |
luci-mod-network: fix horizontal scrolling in the bridge vlan filter matrix
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js | 4 |
1 files changed, 1 insertions, 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)); |