mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-42858 Course Management: fix regression for subcategories visibility
This commit is contained in:
parent
b58bc15af5
commit
3e57883c5c
@ -622,10 +622,6 @@ class helper {
|
||||
if (!$category->can_change_visibility()) {
|
||||
throw new \moodle_exception('permissiondenied', 'error', '', null, 'coursecat::can_change_visbility');
|
||||
}
|
||||
if ((int)$category->get_parent_coursecat()->visible === 0) {
|
||||
// You cannot mark a category visible if its parent is hidden.
|
||||
return false;
|
||||
}
|
||||
$category->show();
|
||||
return true;
|
||||
}
|
||||
|
@ -463,14 +463,11 @@ input.titleeditor { vertical-align: text-bottom; }
|
||||
.dir-rtl #course-category-listings .listitem > div > .float-right {float:left;text-align:left;}
|
||||
|
||||
#course-category-listings .listitem[data-visible="0"],
|
||||
#course-category-listings .listitem[data-visible="0"] a.categoryname,
|
||||
#course-category-listings .listitem[data-visible="0"] > div > a {color:#AAA;}
|
||||
#course-category-listings .listitem > div .item-actions .action-hide,
|
||||
#course-category-listings .listitem[data-visible="0"] > div .item-actions .action-show {display:inline;}
|
||||
#course-category-listings .listitem > div .item-actions .action-show,
|
||||
#course-category-listings .listitem[data-visible="0"] > div .item-actions .action-hide,
|
||||
#course-category-listings .listitem[data-visible="0"] > ul .item-actions.category-item-actions .action-hide,
|
||||
#course-category-listings .listitem[data-visible="0"] > ul .item-actions.category-item-actions .action-show,
|
||||
|
||||
#category-listing .listitem:first-child > div .item-actions .action-moveup,
|
||||
#category-listing .listitem:last-child > div .item-actions .action-movedown,
|
||||
|
@ -967,9 +967,6 @@ span.editinstructions {
|
||||
// The category or course is hidden.
|
||||
&[data-visible="0"] {
|
||||
.muted;
|
||||
a.categoryname {
|
||||
.muted;
|
||||
}
|
||||
> div {
|
||||
> a {
|
||||
.muted;
|
||||
@ -983,13 +980,6 @@ span.editinstructions {
|
||||
}
|
||||
}
|
||||
}
|
||||
> ul .item-actions.category-item-actions {
|
||||
// If the category is hidden hide both show and hide icons for sub categories.
|
||||
.action-hide,
|
||||
.action-show {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.highlight {
|
||||
background-color:transparent;
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user