summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-02-24 00:03:55 -0800
committerNOYB <Al_Stu@Frontier.com>2016-02-24 00:03:55 -0800
commit5e5adb2b4e14fd74a9ac1e7df3d2ccd49c5cd0bf (patch)
treefc35dc389b2fa97aee3d432ae0c4565f04727250
parentc801e9d74dda18989ae19a320326d34b135d20bc (diff)
downloadpfsense-5e5adb2b4e14fd74a9ac1e7df3d2ccd49c5cd0bf.zip
pfsense-5e5adb2b4e14fd74a9ac1e7df3d2ccd49c5cd0bf.tar.gz
Deletes Even if Say Cancel - Fixes 5907
Touch Action CSS Bootstrap is applying this to the .btn class. But that doesn't cover everything for us nor does it make possible to double tap firewall rules (table rows & cells) to edit. "W3C added a new value for touch-action to the pointer events specification: manipulation." https://w3c.github.io/pointerevents/#the-touch-action-css-property Background: What Exactly Is..... The 300ms Click Delay - November 21, 2013 http://www.telerik.com/blogs/what-exactly-is.....-the-300ms-click-delay "From a practical point of view, touch-action determines whether you can pinch to zoom or double tap to zoom after touching the targeted element. Therefore this is perfect for solving our 300ms click delay."
-rw-r--r--src/usr/local/www/bootstrap/css/pfSense.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/usr/local/www/bootstrap/css/pfSense.css b/src/usr/local/www/bootstrap/css/pfSense.css
index 1d621c8..22c8e87 100644
--- a/src/usr/local/www/bootstrap/css/pfSense.css
+++ b/src/usr/local/www/bootstrap/css/pfSense.css
@@ -859,3 +859,9 @@ a[href]:after {
.bs-callout-info h4 {
color: #01579B;
}
+
+/* Disable 300 ms click delay so event handlers are effective. */
+/* Makes posible for non-touch compatible features to work; e.g. double tap rule to edit. */
+body{
+ touch-action: manipulation;
+}
OpenPOWER on IntegriCloud