-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
UI stackable menu does not stack the child "right menu" #3604
Comments
I've been struggling with this as well. |
This should be easy |
Do you want to handle this ? |
Got it |
Thanks jack. You're a rockstar! |
I am still having this kind of problem, how to fix this? |
@eskiesirius you may use '.right.item' instead of '.right.menu .item'. |
I'm still getting this behavior as well.. |
+1: Only the first item on the right menu appears stacked along with the left menu items |
+1 This need to be fixed! |
here's an illustration of the problem, and a (bad) fix to illustrate what is happening to the other items: https://jsfiddle.net/arlyon/h5e877mm/1/ (just make sure you have the result set to mobile width) Essentially the other items in |
This solved it for me: <div class="ui stackable menu">
<a class="item">My first left item</div>
<a class="item">My second left item</a>
<a class="right item">My first right item</a>
<a class="item">My second right item</a>
</div> There may be a missing border on the right side, but currently this seems to be the best solution. |
It's right, the solution from @wtfuii has worked perfectly for me. But you have to deal with the margin-left of the .items |
Hello, |
I think the following addition would be sufficient to fix this issue, it does require some testing though. in @media only screen and (max-width: @largestMobileScreen) {
...
.ui.stackable.menu .right.menu,
.ui.stackable.menu .left.menu {
flex-direction: column;
}
} If someone else would like to create a pull request go ahead and do it since I won't have enough time at the moment to do it. |
I've fixed this in |
I have add code like this
but if I add .pusher to body,to stick the footer(https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/) |
The
right menu
insideui stackable menu
does not display correctly on mobile devicesExample:
http://jsfiddle.net/7wpm7bka/
The text was updated successfully, but these errors were encountered: