#31737: Strange admin behaviour on Django 3.1b1 with Firefox
---------------------------------+--------------------------------------
Reporter: Claude Paroz | Owner: nobody
Type: Bug | Status: new
Component: contrib.admin | Version: 3.1
Severity: Release blocker | Resolution:
Keywords: | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
---------------------------------+--------------------------------------
Comment (by Carlton Gibson):
Two things going on here.
1. The parent element should have `display: flex`.
2. Browser support.
On 1. This looks to be the case.
[https://github.com/django/django/blob/2e8941b6f90e65ffad3f07083b8de59e8ed29767/django/contrib/admin/static/admin/css/base.css#L748-L751
From base.css]:
{{{
#container > .main {
display: flex;
flex: 1 0 auto;
}
}}}
Disabling that in the inspector causes the issue described.
So where and why exactly is it not being set? (Currently at
`needsinfo`/`worksforme`.)
Then browser support: the intention of
8b30360322d4de6687e17ab267a856db4e3c78a6 for #31032 was precisely to
support only the latest versions. With the current batch of evergreen
browsers, you have to opt-out of being up to date. No doubt it won't last
forever but, we seem to be in a ''belle époque'' from a maintenance
perspective for browser support. I don't think we should willingly
compromise that.
Nonetheless, Firefox ESR isn't that far behind. I think the discussion at
least here should be moot.
If we can answer 1 that would help.
--
Ticket URL: <https://code.djangoproject.com/ticket/31737#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/065.ef363df8d0252d903e80480c501193ca%40djangoproject.com.