From 896e87228c323a248b4e672675b109c0ebd1e3f5 Mon Sep 17 00:00:00 2001 From: chen levy Date: Mon, 31 Jul 2023 11:37:10 +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 249fa732d42..6f12c9e5670 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 32ffee115e4..7b613272472 100644 --- a/theme/boost/style/moodle.css +++ b/theme/boost/style/moodle.css @@ -18431,6 +18431,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 d0d24ab67d0..d92656dcc2f 100644 --- a/theme/classic/style/moodle.css +++ b/theme/classic/style/moodle.css @@ -18431,6 +18431,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;