Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.7.5, 2.8.3
-
MOODLE_27_STABLE, MOODLE_28_STABLE
-
MOODLE_27_STABLE, MOODLE_28_STABLE
-
Description
On the 'Course and category management' page within a category there is a line of text containing 'Create new course' along with 'Sort courses' and 'Per page:'. The latters are styled with 'display: inline-block' but 'Create new course' is not - thus presents itself as higher than the other text. Screen shots to follow that illustrate this.
The solution lies in 'bootstrapbase/less/moodle/course.less' where:
.listing-actions {
|
text-align:center;
|
padding:0.4rem 0.3rem 0.3rem;
|
line-height:2.2em;
|
> .moodle-actionmenu {
|
display:inline-block;
|
.menu a {
|
padding-left:1rem;
|
}
|
}
|
can be changed to:
.listing-actions {
|
text-align:center;
|
padding:0.4rem 0.3rem 0.3rem;
|
line-height:2.2em;
|
> .moodle-actionmenu, > a {
|
display:inline-block;
|
.menu a {
|
padding-left:1rem;
|
}
|
}
|
to solve the issue.