From ad2f461809cb79a6e0a697a8084e4a9da1e2e69e Mon Sep 17 00:00:00 2001 From: Boubaker Khanfir Date: Mon, 19 Aug 2024 09:27:20 +0100 Subject: [PATCH] fix: Allow to refresh page by pull gesture on Mobile - MEED-7328 - Meeds-io/meeds#2314 (#814) 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