mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-10 00:06:13 +00:00
Fix inconsistent footer width (#3723)
This commit is contained in:
parent
85286699d2
commit
f9aebb77d7
3 changed files with 5 additions and 7 deletions
|
|
@ -21,6 +21,7 @@ Changelog
|
|||
* Fix: StructBlock values no longer render HTML templates as their `str` representation, to prevent infinite loops in debugging / logging tools (Matt Westcott)
|
||||
* Fix: Removed deprecated jQuery ``load`` call from TableBlock initialisation (Jack Paine)
|
||||
* Fix: Position of options in mobile nav-menu (Jack Paine)
|
||||
* Fix: Center page editor footer regardless of screen width (Jack Paine)
|
||||
|
||||
|
||||
1.11.1 (07.07.2017)
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ Bug fixes
|
|||
* StructBlock values no longer render HTML templates as their ``str`` representation, to prevent infinite loops in debugging / logging tools (Matt Westcott)
|
||||
* Removed deprecated jQuery ``load`` call from TableBlock initialisation (Jack Paine)
|
||||
* Position of options in mobile nav-menu (Jack Paine)
|
||||
* Center page editor footer regardless of screen width (Jack Paine)
|
||||
|
||||
Upgrade considerations
|
||||
======================
|
||||
|
|
|
|||
|
|
@ -435,8 +435,9 @@ footer,
|
|||
}
|
||||
|
||||
footer {
|
||||
width: 80%;
|
||||
margin-left: 50px;
|
||||
margin-left: $desktop-nice-padding;
|
||||
margin-right: $desktop-nice-padding;
|
||||
width: calc(100% - #{$menu-width} - #{2 * $desktop-nice-padding});
|
||||
}
|
||||
|
||||
.content {
|
||||
|
|
@ -461,11 +462,6 @@ footer,
|
|||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
width: 80%;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
|
||||
// Z-indexes
|
||||
.nav-main {
|
||||
|
|
|
|||
Loading…
Reference in a new issue