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.
This commit is contained in:
Toby Zerner 2017-11-05 16:21:18 +10:30
parent 3be98b9f8e
commit 54597ee5eb

View File

@ -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 {