summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Beaver <sbeaver@netgate.com>2016-11-04 16:24:12 -0400
committerSteve Beaver <sbeaver@netgate.com>2016-11-04 16:25:08 -0400
commit7da65ab7dc9a1b55624de9fb6eb9a4a272440573 (patch)
tree53e39c94716d0f0b23c3c800df67a6b4e8c04667
parent7ac34d65a4f3f8561c8156ae75630aa71c8a88f2 (diff)
downloadpfsense-7da65ab7dc9a1b55624de9fb6eb9a4a272440573.zip
pfsense-7da65ab7dc9a1b55624de9fb6eb9a4a272440573.tar.gz
Fixed #6895
by setting overflow-x: visible; in CSS
-rw-r--r--src/usr/local/www/css/pfSense.css1
-rw-r--r--src/usr/local/www/firewall_rules.php3
2 files changed, 4 insertions, 0 deletions
diff --git a/src/usr/local/www/css/pfSense.css b/src/usr/local/www/css/pfSense.css
index a2cb099..4e28d80 100644
--- a/src/usr/local/www/css/pfSense.css
+++ b/src/usr/local/www/css/pfSense.css
@@ -94,6 +94,7 @@ tr.disabled th {
.table-responsive {
clear: both;
margin-bottom: 0px;
+ overflow-x: visible; /** Required to allow dragging to automatically scroll the page */
}
/* navigation */
diff --git a/src/usr/local/www/firewall_rules.php b/src/usr/local/www/firewall_rules.php
index 28a7ab6..ab17061 100644
--- a/src/usr/local/www/firewall_rules.php
+++ b/src/usr/local/www/firewall_rules.php
@@ -946,6 +946,9 @@ events.push(function() {
$('table tbody.user-entries').sortable({
cursor: 'grabbing',
+ scroll: true,
+ overflow: 'scroll',
+ scrollSensitivity: 100,
update: function(event, ui) {
$('#order-store').removeAttr('disabled');
reindex_rules(ui.item.parent('tbody'));
OpenPOWER on IntegriCloud