Skip to content

Commit

Permalink
Merge branch 'MDL-61019-35' of https://github.com/lucaboesch/moodle i…
Browse files Browse the repository at this point in the history
…nto MOODLE_35_STABLE
  • Loading branch information
David Monllao committed Jul 16, 2018
2 parents 474ec7e + 4f7cf40 commit c6fa9f2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
12 changes: 8 additions & 4 deletions mod/lesson/renderer.php
Expand Up @@ -505,10 +505,14 @@ public function progress_bar(lesson $lesson, $progress = null) {
$progress = $lesson->calculate_progress(); $progress = $lesson->calculate_progress();
} }


// print out the Progress Bar. Attempted to put as much as possible in the style sheets. $content = html_writer::start_tag('div');
$content = '<br />' . html_writer::tag('div', $progress . '%', array('class' => 'progress_bar_completed', 'style' => 'width: '. $progress . '%;')); $content .= html_writer::start_tag('div', array('class' => 'progress'));
$printprogress = html_writer::tag('div', get_string('progresscompleted', 'lesson', $progress) . $content, array('class' => 'progress_bar')); $content .= html_writer::start_tag('div', array('class' => 'progress-bar bar', 'role' => 'progressbar',

'style' => 'width: ' . $progress .'%', 'aria-valuenow' => $progress, 'aria-valuemin' => 0, 'aria-valuemax' => 100));
$content .= $progress . "%";
$content .= html_writer::end_tag('div');
$content .= html_writer::end_tag('div');
$printprogress = html_writer::tag('div', get_string('progresscompleted', 'lesson', $progress) . $content);
return $this->output->box($printprogress, 'progress_bar'); return $this->output->box($printprogress, 'progress_bar');
} }


Expand Down
9 changes: 9 additions & 0 deletions theme/boost/scss/moodle/modules.scss
Expand Up @@ -240,6 +240,15 @@ div#dock {
#page-mod-lesson-view .branchbuttoncontainer .singlebutton button[type="submit"] { #page-mod-lesson-view .branchbuttoncontainer .singlebutton button[type="submit"] {
white-space: normal; white-space: normal;
} }
#page-mod-lesson-view {
.vertical .singlebutton {
display: block;
+ .singlebutton {
margin-left: 0;
margin-top: 1rem;
}
}
}
.path-mod-lesson .generaltable td { .path-mod-lesson .generaltable td {
vertical-align: middle; vertical-align: middle;
label { label {
Expand Down
6 changes: 6 additions & 0 deletions theme/boost/style/moodle.css
Expand Up @@ -15408,6 +15408,12 @@ div#dock {
#page-mod-lesson-view .branchbuttoncontainer .singlebutton button[type="submit"] { #page-mod-lesson-view .branchbuttoncontainer .singlebutton button[type="submit"] {
white-space: normal; } white-space: normal; }


#page-mod-lesson-view .vertical .singlebutton {
display: block; }
#page-mod-lesson-view .vertical .singlebutton + .singlebutton {
margin-left: 0;
margin-top: 1rem; }

.path-mod-lesson .generaltable td { .path-mod-lesson .generaltable td {
vertical-align: middle; } vertical-align: middle; }
.path-mod-lesson .generaltable td label { .path-mod-lesson .generaltable td label {
Expand Down

0 comments on commit c6fa9f2

Please sign in to comment.