@takanakui
Sorry for the delay. So I was able to get my very hacky, ungraceful solution working with 2.5. You can see it on my website here: https://www.netris.us
All I did to achieve this is add the following code to includes/dynamic-style.php at line 404, I believe:
.mob-menu-slideout-over.show-nav-left .mobmenul-container {
margin-left: <?php echo $left_menu_width; ?>;
}
This pushed the cancel button out, but it was under the overlay which was not desired. I made several attempts to resolve this by setting the mobmenul-container element to a higher z-index (999999) and setting its opacity to 1, but for some reason this did not work. So I ended up just setting the overlay’s alpha channel to 0 in the plugin settings for now.
What I was trying to do is get the cancel button to animate out with the menu. It seemed easy enough on first glance, but for some reason I could never get it to work right. Any suggestions?