From e0d66d1ce2fd25b8e0fe97010a9803e8e609a0d2 Mon Sep 17 00:00:00 2001 From: Marco Bonetti Date: Fri, 2 Oct 2020 20:39:43 +0200 Subject: [PATCH] Fixes #248: Translation page broken in Django 3.1.2 --- CHANGES | 5 +++-- rosetta/templates/rosetta/css/rosetta.css | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index c206e4b..693c1be 100644 --- a/CHANGES +++ b/CHANGES @@ -2,8 +2,8 @@ Version History =============== -Version 0.9.5 (unreleased) --------------------------- +Version 0.9.5 +------------- * Fixed DeprecationWarning: invalid escape sequence (#234, Thanks @jayvdb) * Fixed typo in documentation (#232, thanks @timgates42) * Added Kyrgyz translation (#239,thanks @Soyuzbek) @@ -13,6 +13,7 @@ Version 0.9.5 (unreleased) * Dropped support for Django 1.11 and Python 2 * Test against Django 3.1a * Do not show Rosetta link in admin panel if user has no access to translations (#240, thanks @mondeja) +* Django 3.1: force #changelist to display:block (#248 thanks @realsuayip and @mondeja) Version 0.9.4 diff --git a/rosetta/templates/rosetta/css/rosetta.css b/rosetta/templates/rosetta/css/rosetta.css index 0cc6aba..f043b7d 100644 --- a/rosetta/templates/rosetta/css/rosetta.css +++ b/rosetta/templates/rosetta/css/rosetta.css @@ -36,6 +36,9 @@ div.module {margin-bottom: 20px;} #toolbar form { float:left; } #changelist table thead th { padding: 2px 5px; } +#changelist { + display: block !important; +} .info-tip::after { content: '?';