-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
Fixed #32069 -- Fixed admin change-form layout on small screens. #13573
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
Fixed #32069 -- Fixed admin change-form layout on small screens. #13573
Conversation
@knyghty Can I ask you to comment on this? Thanks! 😀 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I don't see a reason for it, perhaps I inadvertently saved it from inside the dev tools or something.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@carltongibson Thanks 👍
I found another regression in Django 3.1 with the admin changelist filter sidebar, when width is less than 887px then textarea
is cut off:
Maybe we can fix it here 🤔 at least release notes will match 😄
Related CSS:
.colM .aligned .vLargeTextField, .colM .aligned .vXMLLargeTextField {
width: 610px;
}
Hey @felixxm — AFAICS 🤔 that behaviour is the same in 3.1.0, so not a regression in 3.1.1 ? Maybe it's a bug in a new feature? (But it might just be Close the sidebar! — for which we call it a Cleanup? — I seem to recall we discussed that the sidebar was always going to need to be shut by users for these small-medium screens... 🤔) Either way, we can look at it here but I'm not sure it's the same issue. What do you think? |
Yes, it's a bug in a new feature.
OK, I will create a new ticket. I shouldn't try to smuggle this 😉 🕶️ |
@felixxm I adjusted the commit message ("what" not "how") and rebased. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks👍
ticket-32069. Alternative to #13514.
This was present since the responsive admin was introduced in dc37e88.
Regression in 8ee4bb6, where it was accidentally removed. (That's the question.)
See diff — looking again, this change isn't related to ticket-31986 no?
Reverting that line restores the old behaviour, and I can't see a regression elsewhere.