When List filter enabled, it appears over change list, hiding some data

In Django 3.x, in admin interface, when list_filter is enabled, it appears over the change list (data table). There is no table resize to make space for the list_filter, so it hide some data.

how should it be (from django docs):

https://docs.djangoproject.com/en/dev/ref/contrib/admin/filters/

How its shows in Dj 3.x:

Thanks in advance!

C.

This sort of thing tends to happen if you’re working with multiple versions of Django or otherwise have CSS files cached.

Try cleaning your browser’s cache or doing a hard-refresh.

Ken thanks a lot for your response. You are right, I forgot that I use a custom changelist.css since version 1.17 I think. Making the custom changes to the css but for 3.2 did the trick. One lesson more learned.

Thanks,

C.