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
When a dropdown was created out of prepared divs, the column menus were not working.
That's because the previous approach was using display:inline-block which breaks when the sourcecode contains linebreaks. (Which a well formatted HTML source always has)
It was working when a select tag was converted, but only because the generated HTML did not contain any whitespace
This PR now switches to flexbox for column menus which does not care about linebreaks :) As the transition does block by default we had to teach dropdown to use flex when column menus are used
0 commit comments