adchsm / Slidebars

Slidebars is a jQuery Framework for Off-Canvas Menus and Sidebars into your website or web app.
http://www.adchsm.com/slidebars/
MIT License
1.5k stars 307 forks source link

Transition bug in Firefox affects slidebars #298

Open billynoah opened 6 years ago

billynoah commented 6 years ago

Filed a bug report here: https://bugzilla.mozilla.org/show_bug.cgi?id=1431893

If you check with Firefox version 57 (not sure how far back this goes but apparently it's fine on version 47) even the demo on your website is severely affected due to CSS transitions on the menubar items.

Workaround is to remove or override overflow properties from [off-canvas] and apply them to a wrapper <div> inside for your content:

[off-canvas] > .slidebar-scroll-container {
    height: 100%;
    overflow: hidden;
    overflow-auto: auto;
}