Skip to content

Commit

Permalink
Merge branch 'MDL-73519-master' of https://github.com/meirzamoodle/mo…
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyatregubov committed Feb 16, 2023
2 parents 9074c28 + c5e4685 commit a5c00c1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
12 changes: 12 additions & 0 deletions theme/boost/scss/moodle/course.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1400,6 +1400,18 @@ $activity-add-hover: theme-color-level('primary', -10) !default;
}
}

.course-content .description-inner {
ul {
list-style: disc;
ul {
list-style: circle;
ul {
list-style: square;
}
}
}
}

.activity-item {
position: relative;

Expand Down
7 changes: 7 additions & 0 deletions theme/boost/style/moodle.css
Original file line number Diff line number Diff line change
Expand Up @@ -14918,6 +14918,13 @@ span.editinstructions {
padding-bottom: 0;
border-bottom: 0; }

.course-content .description-inner ul {
list-style: disc; }
.course-content .description-inner ul ul {
list-style: circle; }
.course-content .description-inner ul ul ul {
list-style: square; }

.activity-item {
position: relative;
border-radius: 0.5rem;
Expand Down
7 changes: 7 additions & 0 deletions theme/classic/style/moodle.css
Original file line number Diff line number Diff line change
Expand Up @@ -14918,6 +14918,13 @@ span.editinstructions {
padding-bottom: 0;
border-bottom: 0; }

.course-content .description-inner ul {
list-style: disc; }
.course-content .description-inner ul ul {
list-style: circle; }
.course-content .description-inner ul ul ul {
list-style: square; }

.activity-item {
position: relative;
border-radius: 0.25rem;
Expand Down

0 comments on commit a5c00c1

Please sign in to comment.