Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
MinusBaseline solve flyouts not working
K17
✭✭✭
Hey
Just see that flyouts weren't working correctly.
There is just one addition to to in this:
//create a selectlist select = $('<select/>').css({ position: 'absolute', left: 0, opacity: 0 }).appendTo(flyout);
(in js/custom.js)
Simply add a top: 0 attribute to it:
//create a selectlist select = $('<select/>').css({ position: 'absolute', left: 0, top: 0, opacity: 0 }).appendTo(flyout);
And it works !
(It just because some "select" is placed just below the cog icon, doing this put it over like it must be)
0
Comments
There is a GitHub repo for this theme. You should consider doing a pull request so that bleistivt can easily merge it.
Yep I forgot it