A recent commit added styles to hide the converter page with display: none until the button is pressed. The issue is that the browser (tested in the latest versions of desktop Firefox, Chrome, and Safari) no longer animates the entrance. I'm assuming it's because it doesn't have a frame to animate from, so it just appears. Removing the display: none style fixes the issue.
Expected behavior
After the start page slides out, the converter page slides in.
Actual Behavior
The converter page instantly appears in place, as the start page slides out.
Can you create a fix?
Remove display: none from the #fillinPage style in files/styles.css.
Additional context
The change that caused this bug is meant to fix an issue, so my fix may make that issue come back. I do not know what the issue was, so I can't test my suggested fix for that issue.
A recent commit added styles to hide the converter page with
display: none
until the button is pressed. The issue is that the browser (tested in the latest versions of desktop Firefox, Chrome, and Safari) no longer animates the entrance. I'm assuming it's because it doesn't have a frame to animate from, so it just appears. Removing thedisplay: none
style fixes the issue.To Reproduce Steps to reproduce the behavior:
Expected behavior After the start page slides out, the converter page slides in.
Actual Behavior The converter page instantly appears in place, as the start page slides out.
Can you create a fix? Remove
display: none
from the#fillinPage
style infiles/styles.css
.Additional context The change that caused this bug is meant to fix an issue, so my fix may make that issue come back. I do not know what the issue was, so I can't test my suggested fix for that issue.