Skip to content
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

WIP: Dropdown navigation overflows the screen, cant scroll down #1501

Open
mosen opened this issue Apr 17, 2023 · 0 comments
Open

WIP: Dropdown navigation overflows the screen, cant scroll down #1501

mosen opened this issue Apr 17, 2023 · 0 comments
Labels
beta This issue only exists in beta versions bug

Comments

@mosen
Copy link
Contributor

mosen commented Apr 17, 2023

Quoting precursorca, in v6:

- The dropdown menus for "Reports" and "Listings" do not scroll so items may be cut off from display. ie. those below the scroll line are inaccessible

One possible fix for this is to edit the MR.Blade file:
/munkireport-php/resources/views/layouts/mr.blade.php

by adding 'pre-scrollable' to the div class as follows:

Change:
<div class="report dropdown-menu" aria-labelledby="dashboardsMenuLink">
to:
<div class="report dropdown-menu pre-scrollable" aria-labelledby="dashboardsMenuLink">

and,

Change:
<div class="listing dropdown-menu" aria-labelledby="listingMenuLink">
to:
<div class="listing dropdown-menu pre-scrollable" aria-labelledby="listingMenuLink">

To work for custom Dashboards in /local you also have to edit:

/munkireport-php/resources/views/partials/head.php

by adding 'pre-scrollable' to the div class as follows:

Change:
<div class="report dropdown-menu">
To:
<div class="report dropdown-menu pre-scrollable">

and,

Change:
<div class="listing dropdown-menu">
To:
<div class="listing dropdown-menu pre-scrollable">
@mosen mosen added bug beta This issue only exists in beta versions labels Apr 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
beta This issue only exists in beta versions bug
Projects
None yet
Development

No branches or pull requests

1 participant