mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-18 20:21:11 +00:00
Fix layout issue when using FieldRowPanel with a heading
Resolves #5691
This commit is contained in:
parent
abd8320dc3
commit
5a8f468c2d
3 changed files with 6 additions and 0 deletions
|
|
@ -22,6 +22,7 @@ Changelog
|
|||
* Fix: Moved `get_document_model` location so it can be imported when Models are not yet loaded (Andrey Smirnov)
|
||||
* Fix: Fixed incorrect HTML escaping of Jinja2 form templates for StructBlocks (Brady Moe)
|
||||
* Fix: All templates with wagtailsettings and modeladmin now use `block.super` for `extra_js` & `extra_css` (Timothy Bautista)
|
||||
* Fix: Layout issue when using FieldRowPanel with a heading (Andreas Bernacca)
|
||||
|
||||
2.7 LTS (06.11.2019)
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ Bug fixes
|
|||
* Moved ``get_document_model`` location so it can be imported when Models are not yet loaded (Andrey Smirnov)
|
||||
* Fixed incorrect HTML escaping of Jinja2 form templates for StructBlocks (Brady Moe)
|
||||
* All templates with wagtailsettings and modeladmin now use ``block.super`` for ``extra_js`` & ``extra_css`` (Timothy Bautista)
|
||||
* Layout issue when using FieldRowPanel with a heading (Andreas Bernacca)
|
||||
|
||||
|
||||
Upgrade considerations
|
||||
|
|
|
|||
|
|
@ -63,6 +63,10 @@ $object-title-height: 40px;
|
|||
padding-right: 0;
|
||||
}
|
||||
|
||||
.field-row {
|
||||
padding-top: $object-title-height + 12px;
|
||||
}
|
||||
|
||||
.object-help {
|
||||
display: block;
|
||||
position: relative;
|
||||
|
|
|
|||
Loading…
Reference in a new issue