You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm posting this in case someone else experiences this in Safari 9 on desktop:
Everytime a page is loaded, the Sidr menu flashes shortly over the content of every page, eventhough it's not being triggered (since it's not used for the main menu, which I'm clicking in this case).
To deal with this it should suffice to add the style display: none to the Sidr element, be it in a separate selector.
E.g.:
.my-secondary-menu.sidr{ // this is the "official" selector
background: white;
}
.my-secondary-menu{ // this is the "fixing" selector
display: none;
}
I'm posting this in case someone else experiences this in Safari 9 on desktop:
Everytime a page is loaded, the Sidr menu flashes shortly over the content of every page, eventhough it's not being triggered (since it's not used for the main menu, which I'm clicking in this case).
To deal with this it should suffice to add the style
display: none
to the Sidr element, be it in a separate selector.E.g.:
If deemed apprpriate you can use CSS that targets Safari on desktop only.
The text was updated successfully, but these errors were encountered: