I have an element with absolute positioning that is placed outside of a paper-dialog, specifically within a body > div structure. Inside this div, I have several input fields where I need to input text. However, the paper-dialog prevents the input fields from receiving focus as described in this link.
If you visit this codepen demo, you can see the issue for yourself. Try entering text in the input field (#my_div) both before and after opening the paper-dialog using one of the buttons provided.
Whenever the paper-dialog is open, the document.activeElement always points to the paper-dialog itself. This means I am unable to enter text into the input field located outside of it. (You can check this by clicking anywhere and viewing the console log of document.activeElement)
As a result, I am facing difficulty interacting with the input elements within my div when the paper-dialog is active. Is there a workaround for this situation without making changes to the Polymer code (such as event handling or modifying configurations via DOM properties)? Let's assume that I am running a custom JavaScript script locally on the main site.