Commit 773c4eb 1 parent 0c48993 commit 773c4eb Copy full SHA for 773c4eb
File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 6
6
7
7
### Unreleased
8
8
9
+ * 2024-11-18 - Bugfix: Footer displacement on pages with minimal content, resolves #655 .
9
10
* 2024-11-18 - Upstream change: Adopt changes from MDL-77732 ('Custom menu items do not receive active behaviour'), resolves #436 #620 #384 #715 .
10
11
* 2024-11-13 - Upstream change: Adopt changes from MDL-78999 ('Site logo does not appear in mobile view'), resolves #753 .
11
12
* 2024-11-11 - Release: Add ssystems GmbH to the list of maintainers in README.md.
Original file line number Diff line number Diff line change @@ -649,11 +649,14 @@ body.theme-boost-union-commincourse {
649
649
650
650
/* To support additional block regions around the main content area, Boost Union introduced
651
651
the main-inner-wrapper HTML element. Unfortunately, this breaks the Flexbox flow of Moodle core.
652
- To make it work again, we have to set the Flexbox flex attribute in the main-inner-wrapper element as well. */
653
- .main-inner-wrapper {
652
+ To make it work again, we have to set the Flexbox flex attribute in the main-inner-wrapper element as well.
653
+ In addition to that, we set the Flexbox attribute for the #page element as well as it turned out to be necessary. */
654
+ .main-inner-wrapper ,
655
+ #page-wrapper #page {
654
656
flex : 1 0 auto ;
655
657
}
656
658
659
+
657
660
/* ---------------------------------------
658
661
* Settings: Additional block regions - The offcanvas region.
659
662
--------------------------------------*/
You can’t perform that action at this time.
0 commit comments