-
Notifications
You must be signed in to change notification settings - Fork 705
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
The menu is not displayed with last version of chrome (Version 77.0.3865.75 (Build officiel) (64 bits)) #735
Comments
I have the same issue on Chrome Version 77.0.3865.75 (Official Build) (64-bit) |
Looks like the menu is being positioned way of the edge of the screen for some reason |
Quick fix, by modifying the css (not tested on previous Chrome versions) #suit-left {
width: 200px;
left: 0px;
position: absolute;
} |
Partial fix (chrome 76 and 77). .suit-columns.two-columns {
position: relative;
min-height: 500px; // replace it with minimum menu height
}
#suit-left {
left: 0;
position: absolute;
margin-left: 0;
} |
Can be fixed with this:
|
We have the same Problem with V1. Would you provide a patch for this version? |
Likewise. This is quite urgent as we have users that are already on v77.x of Chrome. |
You can add it by yourself in your project in the code as inline CSS. In my case I used the solution given before |
just fixed by adding css suggested in #735 (comment) to |
Will this fix appear "as is" in a code patch (for versions 1 and 2)? |
Fixed it by adding
under templates/admin/base_site.html |
Solve issue in #735 "menu is not displayed with last version of chrome"
Fixed in newest version. Thanks to all contributors.
|
The menu that should be displayed on left is not displayed since last version of Chrome : Version 77.0.3865.75 (Build officiel) (64 bits)
Same problem on the demo https://djangosuit.com/admin/
The text was updated successfully, but these errors were encountered: