From 077abde9aa287ca1574de1e9bf9dcc4a09f90d6c Mon Sep 17 00:00:00 2001 From: Boubaker Khanfir Date: Fri, 16 Aug 2024 13:40:06 +0100 Subject: [PATCH] fix: Allow to refresh page by pull gesture on Mobile - MEED-7328 - Meeds-io/meeds#2314 (#813) Prior to this change, the body overflow CSS style value wasn't allowing to use Mobile Browser builtin feature gesture. This change will enable it by deleting the overflow hidden property value on Mobile and Tablet devices. --- platform-ui-skin/src/main/webapp/skin/less/core/reset.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform-ui-skin/src/main/webapp/skin/less/core/reset.less b/platform-ui-skin/src/main/webapp/skin/less/core/reset.less index 0aaaef629..d2d2acb9c 100755 --- a/platform-ui-skin/src/main/webapp/skin/less/core/reset.less +++ b/platform-ui-skin/src/main/webapp/skin/less/core/reset.less @@ -461,4 +461,10 @@ address { } .btn.disabled, .btn[disabled] { opacity: .65; +} + +@media (max-width: @maxTabletWidth) { + body { + overflow: auto; + } } \ No newline at end of file