From ec7e9d6d5d6662edd0615a4788592b29bafdfec3 Mon Sep 17 00:00:00 2001 From: chen levy Date: Mon, 31 Jul 2023 11:44:36 +0300 Subject: [PATCH] MDL-77658 theme: Fixed RTL manage course categories menu fixed course checkboxes that appears on the categories menu on RTL --- theme/boost/scss/moodle/course.scss | 3 +++ theme/boost/style/moodle.css | 3 +++ theme/classic/style/moodle.css | 3 +++ 3 files changed, 9 insertions(+) diff --git a/theme/boost/scss/moodle/course.scss b/theme/boost/scss/moodle/course.scss index 56c78d67eb4..10456dff365 100644 --- a/theme/boost/scss/moodle/course.scss +++ b/theme/boost/scss/moodle/course.scss @@ -930,6 +930,9 @@ span.editinstructions { border-left: calc(#{$list-group-border-width} + 5px) solid map-get($theme-colors, 'primary'); padding-left: calc(#{$list-group-item-padding-x} - 5px); } + &:hover { + z-index: 2; + } } .item-actions { diff --git a/theme/boost/style/moodle.css b/theme/boost/style/moodle.css index d8eaad610c5..ac6d0cd78b7 100644 --- a/theme/boost/style/moodle.css +++ b/theme/boost/style/moodle.css @@ -28681,6 +28681,9 @@ span.editinstructions .alert-link { border-left: calc(1px + 5px) solid #0f6cbf; padding-left: calc(1.25rem - 5px); } +#course-category-listings .listitem:hover { + z-index: 2; +} #course-category-listings .item-actions { margin-right: 1em; display: inline-block; diff --git a/theme/classic/style/moodle.css b/theme/classic/style/moodle.css index 30666dc171d..4ad19e385a7 100644 --- a/theme/classic/style/moodle.css +++ b/theme/classic/style/moodle.css @@ -28681,6 +28681,9 @@ span.editinstructions .alert-link { border-left: calc(1px + 5px) solid #0f6cbf; padding-left: calc(1.25rem - 5px); } +#course-category-listings .listitem:hover { + z-index: 2; +} #course-category-listings .item-actions { margin-right: 1em; display: inline-block;