We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.2.11 contained a big update for dropdowns. https://github.com/Semantic-Org/Semantic-UI/releases/tag/2.2.11
I am suspecting this change is the culprit:
Dropdown - Dropdowns will automatically detect when they are offscreen to the right and will open leftward instead Thanks @Graveheart #4211
This behavior was working fine and I see no changes in the documentation so I figure this is a regression.
The menu flushes to the left as to have enough space for the items.
The menu goes inline because it gets set style="display: flex !important;" instead of style="display: block !important;".
style="display: flex !important;"
style="display: block !important;"
>= 2.2.11
Working perfectly fine in 2.2.10: https://jsfiddle.net/ca0rovs3/480/ Broken in 2.2.11: https://jsfiddle.net/ca0rovs3/481/ Broken in latest (2.3.1): https://jsfiddle.net/ca0rovs3/482/
The text was updated successfully, but these errors were encountered:
I will force direction to downward for now, it appears to do the trick.
direction
downward
https://jsfiddle.net/ca0rovs3/483/
Sorry, something went wrong.
I've fixed this in next with a css solve that makes sure display: flex isnt applied to dropdown elements.
next
display: flex
56366b9
No branches or pull requests
2.2.11 contained a big update for dropdowns. https://github.com/Semantic-Org/Semantic-UI/releases/tag/2.2.11
I am suspecting this change is the culprit:
This behavior was working fine and I see no changes in the documentation so I figure this is a regression.
Steps
Expected Result
The menu flushes to the left as to have enough space for the items.
Actual Result
The menu goes inline because it gets set
style="display: flex !important;"
instead ofstyle="display: block !important;"
.Version
>= 2.2.11
Testcase
Working perfectly fine in 2.2.10: https://jsfiddle.net/ca0rovs3/480/
Broken in 2.2.11: https://jsfiddle.net/ca0rovs3/481/
Broken in latest (2.3.1): https://jsfiddle.net/ca0rovs3/482/
The text was updated successfully, but these errors were encountered: