mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-03 06:40:28 +00:00
Fix revisions link collapsing
This commit is contained in:
parent
ee9403f7f7
commit
2cd6086f0b
3 changed files with 11 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -174,8 +174,15 @@ footer {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.meta p {
|
||||
white-space: normal;
|
||||
.meta {
|
||||
p {
|
||||
white-space: normal;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue