I've only tested this on FF on Ubuntu, but my colleague reported it with
Chrome.
I've confirmed a fix in `contrib/admin/css/responsive.css` by changing the
following style:
{{{
#changelist-search .quiet {
width: 100%;
margin: 5px 0 0 25px;
}
}}}
to
{{{
#changelist-search .quiet {
flex: 1 0 auto;
width: 0;
margin: 5px 0 0 25px;
}
}}}
This matches the #searchbar style above it.
You can see the problem in my screenshots. The immediate resolution for
users is to make the window slightly larger.
I will be creating a PR for this shortly.
--
Ticket URL: <https://code.djangoproject.com/ticket/32091>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* Attachment "search_skinny_window.png" added.
View showing the search input as too small with a skinny window.
* Attachment "search_wide_window.png" added.
View showing the search input with a slightly wider window.
* keywords: => css admin
* has_patch: 0 => 1
* component: Uncategorized => contrib.admin
Comment:
PR on github: https://github.com/django/django/pull/13517
--
Ticket URL: <https://code.djangoproject.com/ticket/32091#comment:1>
* stage: Accepted => Ready for checkin
--
Ticket URL: <https://code.djangoproject.com/ticket/32091#comment:3>
* status: assigned => closed
* resolution: => fixed
Comment:
In [changeset:"b7da588e883e12b8ac3bb8a486e654e30fc1c6c8" b7da588]:
{{{
#!CommitTicketReference repository=""
revision="b7da588e883e12b8ac3bb8a486e654e30fc1c6c8"
Fixed #32091 -- Fixed admin search bar width on filtered admin page.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/32091#comment:4>