From 2cd6086f0b4e55361c0d705e2bdb4acf7679ffba Mon Sep 17 00:00:00 2001 From: Janneke Janssen Date: Fri, 1 Dec 2017 10:33:20 +0100 Subject: [PATCH] Fix revisions link collapsing --- CHANGELOG.txt | 1 + docs/releases/2.0.rst | 1 + wagtail/admin/static_src/wagtailadmin/scss/core.scss | 11 +++++++++-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 1e02fc319..40b7069df 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -33,6 +33,7 @@ Changelog * Fix: Form submissions pagination no longer looses date filter when changing page (Bertrand Bordage) * Fix: PostgreSQL search backend now removes duplicate page instances from the database (Bertrand Bordage) * Fix: `FormSubmissionsPanel` now recognises custom form submission classes (LB (Ben Johnston)) + * Fix: Prevent the footer and revisions link from unnecessarily collapsing on mobile (Jack Paine) 1.13.1 (17.11.2017) diff --git a/docs/releases/2.0.rst b/docs/releases/2.0.rst index e53f04948..62b5254da 100644 --- a/docs/releases/2.0.rst +++ b/docs/releases/2.0.rst @@ -51,6 +51,7 @@ Bug fixes * Form submissions pagination no longer looses date filter when changing page (Bertrand Bordage) * PostgreSQL search backend now removes duplicate page instances from the database (Bertrand Bordage) * ``FormSubmissionsPanel`` now recognises custom form submission classes (LB (Ben Johnston)) + * Prevent the footer and revisions link from unnecessarily collapsing on mobile (Jack Paine) Upgrade considerations diff --git a/wagtail/admin/static_src/wagtailadmin/scss/core.scss b/wagtail/admin/static_src/wagtailadmin/scss/core.scss index 73e2e81e1..238f7bfba 100644 --- a/wagtail/admin/static_src/wagtailadmin/scss/core.scss +++ b/wagtail/admin/static_src/wagtailadmin/scss/core.scss @@ -174,8 +174,15 @@ footer { width: 100%; } - .meta p { - white-space: normal; + .meta { + p { + white-space: normal; + width: 100%; + } + + .avatar { + left: auto; + } } }