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

The menu is not displayed with last version of chrome (Version 77.0.3865.75 (Build officiel) (64 bits)) #735

Closed
pulse-mind opened this issue Sep 13, 2019 · 12 comments

Comments

@pulse-mind
Copy link

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/

@Napoleon-Black
Copy link

I have the same issue on Chrome Version 77.0.3865.75 (Official Build) (64-bit)

@daniel-clayton
Copy link

Looks like the menu is being positioned way of the edge of the screen for some reason

@andremerlo
Copy link

Quick fix, by modifying the css (not tested on previous Chrome versions)

#suit-left {
    width: 200px;
    left: 0px;
    position: absolute;
}

@yoelnacho
Copy link

yoelnacho commented Sep 13, 2019

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;
}

@minholi
Copy link

minholi commented Sep 14, 2019

Can be fixed with this:

.suit-columns { display: flex; }

chris-jones added a commit to chris-jones/django-suit that referenced this issue Sep 21, 2019
chris-jones added a commit to chris-jones/django-suit that referenced this issue Sep 21, 2019
@kingmray
Copy link

We have the same Problem with V1. Would you provide a patch for this version?

@gamesbook
Copy link

Likewise. This is quite urgent as we have users that are already on v77.x of Chrome.

@pulse-mind
Copy link
Author

You can add it by yourself in your project in the code as inline CSS. In my case I used the solution given before
.suit-columns { display: flex; }

@ayush--s
Copy link

just fixed by adding css suggested in #735 (comment) to templates/admin/base_site.html (for v1 suit admin)

@gamesbook
Copy link

Will this fix appear "as is" in a code patch (for versions 1 and 2)?

@ahmedouvic
Copy link

Fixed it by adding

{% block extrastyle %}
{{ block.super }}
<style>
    .suit-columns { display: flex; }
</style>
{% endblock %}

under templates/admin/base_site.html

darklow added a commit that referenced this issue Sep 30, 2019
Solve issue in #735 "menu is not displayed with last version of chrome"
@darklow
Copy link
Owner

darklow commented Oct 2, 2019

Fixed in newest version. Thanks to all contributors.

django-suit==0.2.28

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests