mirror of
https://github.com/flarum/framework.git
synced 2025-01-19 18:12:59 +08:00
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:
parent
9682cd5f26
commit
16e55f724d
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue
Block a user