diff --git a/CHANGES.md b/CHANGES.md index fcb985d105602a14ba58ee08857f9513ec9b1d4d..c734f071bc9f439da2c7d0ec991847bba51ad2fe 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,8 @@ Changes ### Unreleased +* 2020-09-18 - Removed fix that bullet points are cut off because it is fixed in upstream Boost now. + NOTE: requires minimum Moodle version Moodle 3.9.2 (2020061502) * 2020-09-03 - Adjusted columns2.mustache template due to upstream changes in theme Boost. * 2020-09-03 - Adjusted navbar.mustache template due to upstream changes in theme Boost. * 2020-09-03 - Fixed Behat issues after upgrading to 3.9. diff --git a/scss/post.scss b/scss/post.scss index c0c39c77354ccebf89e326880c311a71bff52ada..c74af7d1b3d398761e579456fbfd3201423308a1 100644 --- a/scss/post.scss +++ b/scss/post.scss @@ -418,10 +418,6 @@ body.loginbackgroundimage #page { ul.topics, ul.weeks, ul.periods { - /* We need this to prevent bullet points are cut on the left side of the course content. */ - .contentwithoutlink ul li { - list-style-position: inside; - } /* Set section dividing border-color to brand-primary. */ li.section.main { border: none; diff --git a/version.php b/version.php index 3a25beed899005a204c0c45d3345631004abbdfe..b18d8f8db75bff31227e4e7b2eb269ba1349b25f 100644 --- a/version.php +++ b/version.php @@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'theme_boost_campus'; $plugin->version = 2020090101; $plugin->release = 'v3.8-r5'; -$plugin->requires = 2020061500; +$plugin->requires = 2020061502; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = array('theme_boost' => 2020061500);