Profile Dropdown menu issue
Description
[Description of the issue]
Steps to Reproduce
- Login to system
- Click on profile (top right of screen)
Expected behaviour:
I expect profile open as shown in picture.
Actual behaviour:
The pop-op menu go out of screen and use can't see it as shown in picture.
Reproduces how often:
Always
Versions
Mobilizion: 4.1.0 Web BrowseR: Firefox 131.0.3 OS: Arch
Additional Information
I just changed this:
.o-drop__menu--bottom-left {
right: auto;
left: 0;
top: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
bottom: auto;
to this:
.o-drop__menu--bottom-left {
right: 0;
left: auto;
top: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
bottom: auto;
and problem solved. I also could change o-drop__menu--bottom-left to o-drop__menu--bottom-right:
<div aria-hidden="false" role="list" aria-modal="true" style="" class="o-drop__menu dropdown-menu o-drop__menu--bottom-left o-drop__menu--active">
to
<div aria-hidden="false" role="list" aria-modal="true" style="" class="o-drop__menu dropdown-menu o-drop__menu--bottom-right o-drop__menu--active">