mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 17:57:04 +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
3be98b9f8e
commit
54597ee5eb
|
@ -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