mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
[3.2.x] Fixed #32391 -- Used CSS flex properties for changelist filter.
Matched layout adjustment using flex from admin sidebar added ind24ba1be7a. Filters would become squashed when viewport was constrained or list display table became too wide. Backport of269a767146from master
This commit is contained in:
committed by
Carlton Gibson
parent
f9b2b1bb3b
commit
d83249b0b9
@@ -128,8 +128,8 @@
|
||||
/* FILTER COLUMN */
|
||||
|
||||
#changelist-filter {
|
||||
flex: 0 0 240px;
|
||||
order: 1;
|
||||
width: 240px;
|
||||
background: var(--darkened-bg);
|
||||
border-left: none;
|
||||
margin: 0 0 0 30px;
|
||||
|
||||
@@ -157,7 +157,7 @@ input[type="submit"], button {
|
||||
}
|
||||
|
||||
#changelist-filter {
|
||||
width: 200px;
|
||||
flex-basis: 200px;
|
||||
}
|
||||
|
||||
.change-list .filtered .results,
|
||||
|
||||
@@ -9,4 +9,5 @@ Django 3.1.6 fixes several bugs in 3.1.5.
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* ...
|
||||
* Fixed an admin layout issue in Django 3.1 where changelist filter controls
|
||||
would become squashed (:ticket:`32391`).
|
||||
|
||||
Reference in New Issue
Block a user