Skip to content

Commit

Permalink
version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hribeiro committed May 4, 2023
1 parent 1b37e97 commit 62712b6
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 49 deletions.
7 changes: 6 additions & 1 deletion scss/_courseCompletionProgress.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,19 @@
justify-content: right;
padding-right: 15px;
}
.completion-meter {
span {
border-radius: 6px;
opacity: 0.8;
}
}
.circle {
position: relative;
width: 40px;
height: 40px;
border-radius: 50%;
background: #298976;
overflow: hidden;
opacity: 0.8;
.inner {
display: flex;
justify-content: center;
Expand Down
4 changes: 3 additions & 1 deletion scss/_incourse.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
position: relative;
width: 0;
}

@media (max-width: 768px) {
.bulkenabled .course-content {
margin-left: 1.2rem; }
margin-left: 1.2rem;
}
}
8 changes: 2 additions & 6 deletions scss/_interface.scss
Original file line number Diff line number Diff line change
Expand Up @@ -161,16 +161,12 @@ header {
color: $white;
}
// Fixes user own pages because of img size.
.userinitials.size-100,
.userpicture {
.userinitials.size-100 {
width: 60px;
height: 60px;
font-size: 1.6rem;
}
}
.bulkEnable {
opacity: 0.8;
}
ol.breadcrumb {
margin-left: $spacer * 1;
}
Expand Down Expand Up @@ -239,7 +235,7 @@ header {
}
// When there's a sticky footer.
.hasstickyfooter #back-to-top {
bottom: calc(5rem + 5rem);
bottom: calc(5rem + 60px);
}

// Corrects letters pagination.
Expand Down
3 changes: 2 additions & 1 deletion templates/core/full_header.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
{{#hascompletion}}
<div class="wrap-circles completion-meter" role="meter" aria-label="{{#str}}coursecompletion, completion{{/str}}"
aria-valuenow="{{completionrate}}" aria-valuemin="0" aria-valuemax="100">
<div class="mt-1 circle per-{{completionrate}}" data-toggle="tooltip" title="Course Completion" data-placement="left">
<span class="m-1 p-2 text-info bg-light">{{#str}}coursecompletion, completion{{/str}}</span>
<div class="mt-1 circle per-{{completionrate}}">
<div class="inner">{{completionrate}}%</div>
</div>
</div>
Expand Down
37 changes: 0 additions & 37 deletions templates/core_courseformat/local/content/bulkedittoggler.mustache

This file was deleted.

2 changes: 1 addition & 1 deletion templates/login.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</div>
<div class="col-sm-7 px-0 d-none d-sm-block login-image">
<img src="{{{loginimg}}}"
alt="Login image" class="w-100 h-100">
alt="Login image" class="w-100 vh-100">
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/partials/main_slider.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"index" : 0,
"active" : 1,
"single" : 1,
'sliderimage' : 'beautiful.jpg',
"sliderimage" : "beautiful.jpg",
"homepageheroimage" : "https://placehold.co/1920x600",
"herotitle": "Slider title",
"slidermotto": "This is my motto",
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

$plugin->component = 'theme_stream';
$plugin->release = '1.0';
$plugin->version = 2023041000;
$plugin->version = 2023041004;
$plugin->requires = 2022041900;
$plugin->maturity = MATURITY_RC;
$plugin->dependencies = [
Expand Down

0 comments on commit 62712b6

Please sign in to comment.