From 4682f17c49bb11dcbfb222423a496a46bb44553d Mon Sep 17 00:00:00 2001 From: Damyon Wiese Date: Tue, 15 Nov 2016 15:02:40 +0800 Subject: [PATCH] MDL-56967 boost: Fix for layout problem with IE11 --- theme/boost/scss/moodle/blocks.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/theme/boost/scss/moodle/blocks.scss b/theme/boost/scss/moodle/blocks.scss index 598c0e89414..f8016979c30 100644 --- a/theme/boost/scss/moodle/blocks.scss +++ b/theme/boost/scss/moodle/blocks.scss @@ -54,6 +54,12 @@ $blocks-plus-gutter: $blocks-column-width + $grid-gutter-width; border-bottom-left-radius: 0.5rem; float: right; } + +// Required for IE11 to prevent blocks being pushed under the content. +#region-main { + float: left; + width: 100%; +} #region-main-settings-menu.has-blocks, #region-main.has-blocks { display: inline-block; -- 2.36.1