From 54597ee5ebc8d761abf24b0eb730383de2a064b2 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sun, 5 Nov 2017 16:21:18 +1030 Subject: [PATCH] Attempt fix for #1268 I believe the constant overlay of a loading div may be what's causing the iOS cursor issues. This commit removes the fade animation so that we can simply set display to none, which will hopefully fix the issue. --- less/forum/Composer.less | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/less/forum/Composer.less b/less/forum/Composer.less index 4bb7668ce..9707b9327 100644 --- a/less/forum/Composer.less +++ b/less/forum/Composer.less @@ -88,14 +88,11 @@ right: 0; bottom: 0; background: fade(@body-bg, 90%); - opacity: 0; - pointer-events: none; + display: none; border-radius: @border-radius @border-radius 0 0; - .transition(opacity 0.2s); &.active { - opacity: 1; - pointer-events: auto; + display: block; } } .ComposerBody-editor {