Fix inconsistent footer width (#3723)

pull/3753/head
Jack P 2017-08-08 19:55:08 +01:00 zatwierdzone przez Thibaud Colas
rodzic 85286699d2
commit f9aebb77d7
3 zmienionych plików z 5 dodań i 7 usunięć

Wyświetl plik

@ -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)

Wyświetl plik

@ -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
======================

Wyświetl plik

@ -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 {