From bcba3cf5ee1bbf9c5729f7639fb2ff858eba6bfc Mon Sep 17 00:00:00 2001 From: Kathrin Osswald <kathrin.osswald@uni-ulm.de> Date: Fri, 18 Sep 2020 10:48:32 +0200 Subject: [PATCH] Removed fix that bullet points are cut off because it is fixed in upstream Boost now. --- CHANGES.md | 2 ++ scss/post.scss | 4 ---- version.php | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fcb985d..c734f07 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 c0c39c7..c74af7d 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 3a25bee..b18d8f8 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); -- GitLab