From 4709aff85ec5f9c6b46461c92153b6cb0f601fd9 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 17 Dec 2018 16:38:18 +0100 Subject: [PATCH] fix #2437 @2 --- style/fluidbook.less | 8 ++++++-- style/interface.less | 4 ++++ style/mixins.less | 3 +++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/style/fluidbook.less b/style/fluidbook.less index e2795d49..848065eb 100644 --- a/style/fluidbook.less +++ b/style/fluidbook.less @@ -432,7 +432,7 @@ body, html { .ios & { transition-property: none !important; - transition-duration:0ms !important; + transition-duration: 0ms !important; } > .shadow { @@ -499,7 +499,7 @@ body, html { .ios & { transition-property: none !important; - transition-duration:0ms !important; + transition-duration: 0ms !important; } position: absolute; @@ -851,6 +851,10 @@ footer a { footer, header, #interface { transition: opacity 400ms ease-in, visibility 400ms ease-in; + .ios & { + transition: none; + } + &.hidden { visibility: hidden; opacity: 0; diff --git a/style/interface.less b/style/interface.less index 7a7f8d91..d6e286c4 100644 --- a/style/interface.less +++ b/style/interface.less @@ -77,6 +77,10 @@ transition: opacity 100ms; opacity: 1; + .ios & { + transition: none !important; + } + &.interfacehidden { opacity: 0 !important; pointer-events: none !important; diff --git a/style/mixins.less b/style/mixins.less index ae1e82c4..c0490178 100644 --- a/style/mixins.less +++ b/style/mixins.less @@ -63,4 +63,7 @@ &.hidden { opacity: 0; } + .ios & { + transition: none !important; + } } \ No newline at end of file -- 2.39.5