﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32091	Admin search input on small widths is too small with selected list filter	Tim Schilling	tim-schilling	"The search input shrinks down to an unusable level when the window's width is too small. This only occurs when there's a selected list filter causing the `10 results (100 total)` span to appear. This should be reproducible from the admin where there's a search field and a list filter selected. Simply make the window skinny.

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."	Bug	closed	contrib.admin	3.1	Release blocker	fixed	css admin	Tom Carrick	Ready for checkin	1	0	0	0	0	0
